.thirdPartyLogins {
    padding-top: 10px;
    display: flex;
    gap: 2rem;
}

.socialLogin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.error{
    color: red;
    font-size: 0.8rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}


.btn {
    margin: 4px !important;
}

.btn.gray {
    background-color: #818078;
}

.buttons-group {
    -webkit-font-smoothing: antialiased;
    --color-ambient: #101b44;
    --color-rgb-ambient: 16, 27, 68;
    line-height: 1.2;
    font-size: 14px;
    padding: 0;
    box-sizing: border-box;
    margin: 4px -8px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}


@media screen and (max-width: 767px) {
    .buttons-group {
        flex-direction: column-reverse;
        align-items: center;
    }
    .right {
        padding: 5px;
        flex: 1;
    }
}


div.customHeader {
    font-size: 1.3rem;
    margin: auto;
    font-weight: 800;
    position: absolute;
    top: 15px;
}

a {
    color: rgb(0, 100, 200);
    text-decoration: none;
    font-weight: 500;
}
a:hover {
    text-decoration: underline;
}

a:visited {
    color: var(--main-blue-color);
}

label {
    display: block;
}

button,
textarea {
    font-family: inherit;
    font-size: inherit;
    -webkit-padding: 0.4em 0;
    padding: 0.4em;
    /* margin: 0 0 0.5em 0; */
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

button {
    color: #333;
    background-color: #f4f4f4;
    outline: none;
}

button:disabled {
    color: #999;
}

button:not(:disabled):active {
    background-color: #ddd;
}

button:focus {
    border-color: #666;
}

.card {
    /* min-height: 650px; */
    position: relative;
    padding-top: 10px;
    background: #ffffff;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0px 1px 5px 5px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 26%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card.topPadded {
    padding-top: 100px;
}

.card.medPadded {
    padding-top: 50px;
}

.card.superPadded {
    padding-top: 130px;
}

.card img {
    max-width: 450px;
}



input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    transition: background-color 5000s ease-in-out 0s;
    filter: none; /* needed for firefox! */
    box-shadow: 0 0 0px 1000px white inset;
}

@media screen and (max-width: 500px) {
    .container {
        width: auto;
        height: 100%;
        margin: auto;
    }
}

@media screen and (max-height: 520px) {
    .card.medPadded {
        padding-top: 0;
    }
}

@media screen and (min-height: 621px) {
    .card {
        min-height: 670px;
    }
}
