/* Base styles for auth pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f8f9fa;
    padding: 20px;
}

.auth-card {
    background: #fff;
    border-radius: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    margin-top: 70px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.auth-header p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 30px;
}

.auth-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1a202c;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 24px;
}

.auth-btn-google:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.auth-btn-google img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #a0aec0;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 24px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-divider::before {
    margin-right: 10px;
}

.auth-divider::after {
    margin-left: 10px;
}

.auth-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #4a5568;
    transition: all 0.2s;
    background-color: #fafafa;
}

.auth-form-control:focus {
    outline: none;
    border-color: #000000;
    /* Cyan-400 equivalent */
    box-shadow: 0 0 0 1px #4f5050;
    background-color: #fff;
}

.auth-forgot-password {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #718096;
    text-decoration: none;
    margin-bottom: 24px;
}

.auth-forgot-password:hover {
    color: #2d3748;
}

.auth-btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #0f172a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.auth-footer {
    margin-top: 24px;
    font-size: 14px;
    color: #718096;
}

.auth-footer a {
    color: #3182ce;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

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

/* Error styles */
.error-message {
    color: #e53e3e;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}