/* Inline Authentication Styles */
.inline-auth-container {
    background: #f8f9ff;
    padding: 100px 50px 150px 50px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 30, 148, 0.1);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-auth-content {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 30, 148, 0.15);
    animation: authFadeIn 0.5s ease-out;
}

@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header h2 {
    color: var(--raivon-blue, #001e94);
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 600;
}

.auth-header p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.auth-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--raivon-blue, #001e94);
    font-weight: 500;
}

.auth-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.auth-field input:focus {
    outline: none;
    border-color: var(--raivon-blue, #001e94);
    box-shadow: 0 0 0 3px rgba(0, 30, 148, 0.1);
}

.auth-submit {
    background: var(--raivon-blue, #001e94);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-submit:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 30, 148, 0.3);
}

.auth-submit:active {
    transform: translateY(0);
}

.auth-error {
    background: #fee;
    color: #c53030;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #feb2b2;
    font-size: 0.9rem;
    margin-top: 10px;
}

.auth-forgot-password {
    margin-top: 20px;
    text-align: center;
}

.auth-forgot-password a {
    color: var(--raivon-blue, #001e94);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.auth-forgot-password a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .inline-auth-container {
        padding: 60px 20px 100px 20px;
        min-height: calc(100vh - 160px);
    }
    
    .inline-auth-content {
        padding: 40px 30px;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
}