.main-portal-body {
    min-height: calc(1px + 75vh);
    position: relative;
}

.v-form {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.alert {
    font-size: 14px;
    max-width: 500px;
}

.v-form .alert-danger {
	color: #A23200;
	background-color: #ffffff;
}

.v-panel {
    max-width: 500px;
    background-color: #FFF;
    border-radius: 4px;
	width: 100%;
	margin-bottom: 20px;
}

.v-header {
    height: 46px;
    background-color: #833E7C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 4px 0 0;
}

.v-header-logo {
    padding: 5px 10px 15px 10px;
    border: 5px solid #FF872F;
    border-radius: 50px;
    background-color: #D9D9D9;
}

.v-title {
	font-size: 18px;
}

.v-logo {
    width: 52px;
}

.v-body {
    padding: 14px;
}

.v-note {
    font-size: 11px;
    margin: 20px 0;
}

.v-note-link {
    font-size: 11px;
    margin: 20px 0 5px 0;
}

.v-link {
    font-size: 11px;
    margin: 0 0 5px 0;
}

.v-label {
    display: block;
    margin: 5px 0 2px;
}

.v-required {
    color: darkred;
}

.v-back {
	text-align: left;
	font-size: 14px;
	padding-top: 5px;
}

.v-help {
	text-align: right;
	font-size: 14px;
	padding-top: 5px;
}

.v-help-link {
	color: #0056b3;
	text-decoration: underline;
}

.v-help-link:hover {
	color: #003d80;
	text-decoration: underline;
}

.v-help-link:focus-visible, .v-help-link:focus-within {
	color: #003d80;
	outline: 2px solid #003d80;
	outline-offset: 2px;
}

.v-help > a > span, .v-back > a > span {
	text-decoration: underline;
}

.v-help-icon, .v-help-icon:visited {
	color: #004899;
	font-size: 15px;
	top: 2px;
}

.v-footer {
    padding: 0 0 10px 0;
    text-align: center;
}

/** Email lock out styles */
.v-warn {
	height: 100%;
	display: flex;
}

.v-btns {
    display: flex;
}

.v-warn-btns {
    display: flex;
    justify-content: space-around;
	flex-wrap: wrap;
	row-gap: 10px;
}

#v-help-btn {
	background-color: #004A9E;
	color: #ffffff;
}

.v-warn-aside {
	background-color: #A23200;
	color: #FFF;
	font-size: 100px;
	border-radius: 4px 0px 0px 4px;
	margin: 0;
	text-align: center;
	height: 100%;
	width: 100%;
}

.v-warn-note {
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.v-lbl {
    font-weight: bold;
}

.v-warn-body {
    background-color: #FFEFE3;
    border-radius: 0 4px 4px 0;
    flex: 1;
    padding: 10px;
	height: 100%;
}

.support-links {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}

.privacy-link {
    font-size: 14px;
}

.form-control {
	border: 1px solid #767676;
	font-size: 16px;
	padding: 10px 12px;
}

.form-control:focus {
	border-color: #005fcc;
	outline: 3px solid #005fcc;
	outline-offset: 1px;
	box-shadow: none;
}

#verification-btn, #buttonUpdate, #buttonReSent {
	background-color: #006800;
}

#verification-btn:hover,
#verification-btn:focus,
#buttonUpdate:hover,
#buttonUpdate:focus,
#buttonReSent:hover,
#buttonReSent:focus {
	background-color: #0A5A00;
}


/* Overrides bootstrap's "position: relative" property
   which was preventing mouse interactions on smaller page
   widths, see TFS bug #209612 */
   .footer-logo {
    position: inherit;
}

@media only screen
    and (max-width: 990px) {
        .footer-logo {
            text-align: center;
        }

        .support-links {
            justify-content: center;
        }
    }

.btn-primary {
	color: #fff;
	background-color: #337ab7;
	border-color: #2e6da4;
}

.validation-message {
	display: none;
	color: #B60000;
	font-size: 14px;
	margin-top: 5px;
	font-weight: normal;
}

.v-field.invalid {
	border-color: #B60000;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(217,83,79,.6);
}

.v-field.invalid:focus {
	border-color: #B60000;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(217,83,79,.6);
}

@media (min-width: 768px) {
	.v-warn > div.col-sm-3 {
		padding-right: 0;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
	.v-warn > div.col-sm-9 {
		padding-left: 0;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
}
@media (max-width: 767px) {
	.v-warn {
		display: block;
	}
	.v-warn-aside {
		border-radius: 4px 4px 0px 0px;
	}
	.v-warn-body {
		border-radius: 0px 0px 4px 4px;
	}
	.v-warn-note {
		padding-bottom: 10px;
	}
}
