/* ===========================
   AUTH MODAL DESIGN
=========================== */
#modal-container-auth .modal-news {
    width: 480px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(20,30,55,0.85), rgba(15,25,45,0.95));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

#modal-container-auth .modal-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 16px;
}

#modal-container-auth .modal-subtitle {
    margin-top: 8px;
    font-size: 14px;
    color: #9fb3d9;
}

.auth-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-label {
    font-size: 13px;
    font-weight: 600;
    color: #c8dcff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-input-wrapper {
    position: relative;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.25s ease;
}

.auth-input::placeholder {
    color: #7f96c2;
}

.auth-input:focus {
    outline: none;
    border-color: #4e8cff;
    box-shadow: 0 0 0 3px rgba(78,140,255,0.15);
    background: rgba(255,255,255,0.06);
}

.auth-button {
    margin-top: 8px;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    color: white;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 2px 7px rgba(37,99,235,0.4);
    transition: all 0.25s ease;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,99,235,0.4);
}

.auth-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.auth-footer {
    margin-top: 14px;
    text-align: center;
    font-size: 13px;
    color: #8ea6d4;
}