/* Authentication Pages CSS - 1:1 Match for Signin.png & Signup.png */

body.auth-page {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/auth/auth-bg.gif') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body.auth-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.auth-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    padding: 1.5rem;
}

.auth-glass-card {
    background: rgba(235, 235, 235, 0.68);
    backdrop-filter: blur(25px) saturate(190%);
    -webkit-backdrop-filter: blur(25px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.auth-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.auth-form {
    text-align: left;
}

.auth-field-group {
    margin-bottom: 1.25rem;
}

.auth-field-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.auth-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #334155;
    display: block;
    margin-bottom: 0.4rem;
}

.auth-forgot-link {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-forgot-link:hover {
    color: #0f172a;
    text-decoration: underline;
}

.auth-input-wrap {
    position: relative;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.auth-input::placeholder {
    color: #94a3b8;
}

.auth-input:focus {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.auth-input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 15px;
    pointer-events: pointer;
    background: none;
    border: none;
    padding: 0;
}

.btn-auth-submit {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-top: 1.75rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-auth-submit:hover {
    background-color: #1e293b;
    color: #ffffff;
}

.btn-auth-submit:active {
    transform: scale(0.99);
}

.auth-footer-text {
    font-size: 14px;
    color: #475569;
    margin-top: 2rem;
    margin-bottom: 0;
}

.auth-footer-link {
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-footer-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .auth-glass-card {
        padding: 2.25rem 1.5rem;
        border-radius: 20px;
    }
}