/* ===== AUTH PAGES STYLES ===== */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.logo-section {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 16px;
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.auth-form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.required {
    color: #dc3545;
}

.form-control,
.form-select {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-text {
    color: #6c757d;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
}

.password-toggle:hover {
    color: #495057;
}

.form-check {
    margin-bottom: 16px;
}

.form-check-label {
    font-size: 14px;
    color: #495057;
}

.form-check-label a {
    color: #667eea;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.auth-footer p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* ===== VERIFICATION STYLES ===== */
.verification-state {
    text-align: center;
}

.verification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    margin-bottom: 24px;
}

.verification-icon.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.verification-icon.error {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

.verification-instructions {
    margin: 32px 0;
    text-align: left;
}

.instruction-text {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.verification-actions {
    margin-top: 32px;
}

.btn-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
}

.btn-link:hover {
    color: #495057;
    text-decoration: underline;
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid #667eea;
    color: #667eea;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    background: #667eea;
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
    .auth-card {
        padding: 24px;
    }

    .logo {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .auth-title {
        font-size: 20px;
    }
}
