/* Authentication Pages Styles (Login, Register, Forgot Password) */
.auth-page {
    background-color: var(--bg-page);
}

.auth-main {
    min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.auth-card {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    width: 60px;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--logo-dark-blue);
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-form .form-label {
    font-weight: 600;
    color: #475569;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.auth-form .form-control {
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 14px;
    transition: all 0.2s ease;
}

.auth-form .form-control:focus {
    background-color: #fff;
    border-color: var(--logo-accent-blue);
    box-shadow: 0 0 0 4px rgba(0, 168, 168, 0.1);
}

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 32px;
}

.forgot-link {
    color: var(--logo-accent-blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-auth:hover {
    background-color: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer a {
    color: var(--logo-accent-blue);
    font-weight: 700;
    text-decoration: none;
}
  .site-footer{
            margin-top: 0px;
        }
.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
}

/* Password Toggle Styles */
.password-wrapper {
    position: relative;
    display: block;
}

.password-wrapper .form-control {
    padding-right: 48px; /* Space for the icon */
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--logo-accent-blue);
}

.password-toggle i {
    pointer-events: none;
}
