﻿.form-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.form-divider hr {
    width: 21.563rem;
}

.afterHeads {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 4rem;
}

.afterHead-1 {
    color: #2493EA;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.afterHead-2 {
    color: #2493EA;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    text-align: center;
}

.form-divider p {
    background-color: #F5F4F9;
    display: inline;
    padding: 10px;
    position: relative;
    top: -50%;
}

.signin-options {
    width: 23rem;
}

    .signin-options button {
        width: 100%;
        padding: 0.75rem;
        background-color: white;
        border-radius: 0.5rem;
        margin-top: 0.625rem;
        outline: none;
        border: none;
        box-shadow: 0 0 0.973rem #E2EEF8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.125rem;
        transition: 0.5s;
        font-weight: 500;
        cursor: pointer;
        transition: 0.3s;
    }

        .signin-options button:hover {
            color: #2493EA;
        }

    .signin-options img {
        margin-right: 0.75rem;
    }

.form-text-dark {
    margin-top: 1.046rem;
    width: 100%;
    text-align: center;
}

@media (max-width: 590px) {
    .afterHead-1 {
        font-size: 25px;
    }

    .afterHead-2 {
        font-size: 15px;
        width: 70%;
    }
}

@media (max-width: 375px) {
    .form-divider hr {
        width: 15.563rem;
    }

    .signin-options {
        width: 17rem;
    }

        .signin-options button {
            font-size: 1rem;
        }
}

.form-sub-footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    column-gap: 5.26rem;
    margin-top: 2rem;
}

@media (max-width: 425px) {
    .form-sub-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


