footer {
    margin-top: 0;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
    color: var(--color-dark);
}

.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 432px;
}

.login-container {
    width: 100%;
    margin: 0 auto;
    padding: 40PX 16px;
    position: relative;
    max-width: 432px;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 42px);
    gap: 20px;
    flex-direction: column;
    text-align: left;

    .login-form,
    .forgot-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        color: #737373;
    }

    .google-login {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        background: var(--color-light);
        color: var(--color-dark);
        text-decoration: none;
        border: var(--border-default);
        padding: 8px;
        cursor: pointer;
        transition: 0.2s ease;
        box-shadow: var(--box-shadow);

        &:hover {
            box-shadow: var(--box-inverse-shadow);
        }

        &:active {
            box-shadow: -1px 1px 0px var(--color-dark);
        }
    }

    .seperator {
        height: 1px;
        width: 100%;
        background-color: var(--border-color);
    }

    .form-inputs {
        display: flex;
        flex-direction: column;
        gap: 10px;

        label {
            display: inline-block;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: var(--color-dark);
            width: 100%;
            cursor: pointer;
            margin-bottom: 8px;
        }

        input {
            width: 100%;
            border: 1px solid var(--border-color);
            padding: 10px;
            outline: none;
            border-radius: 0;
            transition: all 200ms;

            &::placeholder {
                color: #aaaaaa;
            }

            &:focus {
                border: var(--border-default);
            }
        }

        .form-group {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .form-check {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2px;
            user-select: none;

            input {
                width: 16px;
                height: 16px;
                margin: 0;
                margin-right: 6px;
                color: var(--color-darkgray);
                cursor: pointer;
            }
        }

        #forgotLink {
            font-size: 14px;
            text-decoration: none;
            position: relative;
            line-height: 20px;
        }

        label[for="rememberMe"] {
            margin: 0;
        }

        .form-footer {

            label,
            a {
                font-size: 14px;
            }
        }
    }

    .forgot-body .form-inputs {
        margin-bottom: 24px;
    }

    button {
        display: inline-block;
        width: 100%;
        background-color: #3A99D9;
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        display: inline-block;
        padding: 8px;
        border: var(--border-default);
        color: var(--color-light);
        cursor: pointer;
        outline: none;
        transition: 200ms ease;
        box-shadow: var(--box-shadow);

        &:hover {
            opacity: 0.9;
            box-shadow: var(--box-inverse-shadow);
        }

        &:active {
            box-shadow: -1px 1px 0px var(--color-dark);
        }

        &[disabled] {
            cursor: not-allowed;
        }
    }

    .light-text {
        color: var(--color-darkgray) !important;
    }

    .login-footer {
        width: 100%;
        text-align: center;
        color: var(--color-darkgray);
        font-size: 14px;
        line-height: 20px;

        a {
            color: #3A99D9;
            text-decoration: none;
        }
    }

    a {
        position: relative;
        transition: 200ms ease;

        &::after {
            content: '';
            position: absolute;
            top: 100%;
            height: 1px;
            width: 0;
            background-color: var(--color-dark);
            transition: width 0.2s;
            left: 0;
        }

        &:hover {
            color: var(--color-dark) !important;

            &::after {
                width: 100%;
            }
        }
    }
}

#captchaId {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}