﻿.page-center {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    background-color: #f2f2f2;
}

.container {
    background-color: #f8f8f8;
    padding: 3rem;
    padding-bottom:1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
}

    .container h2{
        padding-bottom:1rem;
    }

.top-line{
    display:flex;
    justify-content:space-between
}

.top-line img{
    max-width: 60px;
}

fieldset {
    border: 0;
    margin: 0 0 2rem 0;
    padding: 0;
}

.container legend {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.form__label {
    display: inline-block;
    color: #1c3a4c;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.16px;
    line-height: 22px;
    margin-bottom: 9px;
    text-align: left;
}

.buttons-container {
    position: relative;
    display: flex;
    justify-content:center;
    margin-bottom:0.75rem;
}
.buttons-container button{
    margin-left:5px;
    margin-right:5px;
}
.form__input {
    color: #1c3a4c;
    font-size: 16px;
    letter-spacing: -.16px;
    line-height: 24px;
    width: 100%;
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid rgba(28, 58, 76, .15);
    border-radius: 6px;
}

.error-hidden {
    display: none;
}
.errors {
    color: #ff5c1a;
}

.verification-container {
    display: none;
    margin-bottom:1.5rem;
}
.verification-container .form__label:nth-of-type(1){
    margin-bottom:5px;
}

.container .verification-container .form-subtext {
    font-weight: 400;
}

.verification-code-input-container {
    display: flex;
    gap: 1rem;
    justify-content: left;
    margin-bottom:5px;
}

.verification-code-input {
    width: 50px;
    height: 60px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.2s;
}

    .verification-code-input:focus {
        border-color: #007bff;
        outline: none;
    }

@media only screen and (max-width:450px) {
    .verification-code-input-container {
        justify-content: center;
    }
    .verification-code-input {
        width: 33px;
        height: 39px;
        font-size: 16px;
    }
}

@media only screen and (max-width:415px) {
    .verification-code-input-container {
        gap: 0;
        justify-content:space-between;
    }

    .verification-code-input {
        width: 33px;
        height: 39px;
    }
}

.resend-container{
    display:flex;
    margin-top:15px;
}
.resend-container p{
    margin-right:8px;
}
    .resend-email {
        cursor: pointer;
    }

.resend-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 123, 255, 0.2);
    border-top: 3px solid #007bff; 
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: none;
}

.register-fields-container{
    display:none;
}

.loading-spinner .spinner{
    width:100px;
    height:100px;
}

.provider__image{
    height:90px;
}

.btn {
    box-sizing: border-box;
    color: #fff;
    background-color: #ff5c1a;
    border-color: #ff5c1a;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.16px;
    line-height: 24px;
    border-radius: 999px;
    padding: 7px 21px;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out
}

.btn-tertiary {
    color: #3477bc;
    background-color: transparent;
    border-color: #3477bc;
}
.btn:hover, .btn.btn-primary:hover {
    color: #fff;
    background-color: #3a1100;
    border-color: #3a1100;
}
.btn.btn-tertiary:hover {
    color: #1c3a4c;
    border-color: #1c3a4c;
    background-color: transparent;
}

.alternate-choice-container{
    display:flex;
    justify-content:center;
    text-align:center;
    font-size:14px;
    margin-bottom:1rem;
}

.alternate-choice-container a{
    cursor:pointer;
}

.recaptcha-container{
    font-size:9px;
    color:grey;
}
