/* /part/css/auth-styles.css */
.ajku-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
    background-color: #f5f7fa;
}

.ajku-auth-card {
    width: 100%;
    max-width: 720px;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ajku-auth-title {
    font-size: 1.8rem;
    color: #003366;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.ajku-auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ajku-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ajku-form-label {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.ajku-form-input {
    padding: 0.9rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ajku-form-input:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.ajku-auth-btn {
    background-color: #003366;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ajku-auth-btn:hover {
    background-color: #002244;
}

.ajku-auth-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.ajku-alert-error {
    background-color: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}