﻿.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-bottom: 20px;
}
.login-header {
    flex-shrink: 0;
    max-height: 100px;
    margin-left: -160px;
}
.login-header .logo img{
    height: 36px;
}
.body-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 620px;
    width: 550px;
    background-color: var(--brand-green);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.login-card {
    margin: 100px auto;
    padding: 20px;
    width: 100%;
    max-width: 364px;
    min-height: 246px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.footer-text {
    text-align: right;
    font-size: 10px;
    font-style: normal !important;
    color: #000;
    margin-top: -15px;
    margin-right: -10px;
    padding-top: 10px;
    margin-bottom: -15px;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.password-toggle:hover {
    color: #000;
}

#password.is-invalid,
#password.is-valid {
    padding-right: 40px; /* Keep space for the eye symbol */
    background-image: none !important; /* Remove the exclamation mark */
}
.login-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.login-actions .forgot-link {
    font-size: 14px;
    text-decoration: none;
    color: #000 !important;
}
@media (max-width: 768px) {
    .login-header {
        margin-left: 0px;
    }
}
