﻿/* =====================================
   AUTH MODAL
===================================== */

.auth-modal {
    border: none;
    border-radius: 25px;
    overflow: hidden;
}

/* =====================================
   AUTH HEADER
===================================== */

.auth-header {
    background: linear-gradient( 135deg, #1e3a8a, #2563eb, #06b6d4);
    color: white;
    text-align: center;
    padding: 30px;
}

    .auth-header h2 {
        font-weight: 900;
        margin-bottom: 5px;
    }

    .auth-header span {
        color: #facc15;
    }

/* =====================================
   INPUTS & BUTTONS
===================================== */

.auth-input {
    height: 52px;
    border-radius: 14px;
    padding: 12px 15px;
}

.auth-btn {
    height: 52px;
    border: none;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    background: linear-gradient( 135deg, #2563eb, #4f46e5);
}

    .auth-btn:hover {
        color: white;
    }

/* SECOND DEFINITION (kept exactly as original) */

.auth-input {
    border-radius: 12px;
    padding: 12px 15px;
}

.auth-btn {
    background: linear-gradient( 135deg, #2563eb, #06b6d4);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
}

    .auth-btn:hover {
        color: white;
    }

/* =====================================
   AUTH TABS
===================================== */

.auth-tabs {
    background: #f1f5f9;
    padding: 6px;
    border-radius: 50px;
    display: flex;
    gap: 5px;
}

    .auth-tabs .nav-link {
        border: none !important;
        border-radius: 40px !important;
        background: transparent !important;
        color: #475569 !important;
        font-weight: 700;
        font-size: 15px;
        padding: 10px 20px;
        transition: .35s;
    }

        .auth-tabs .nav-link:hover {
            color: #2563eb !important;
            background: #ffffff !important;
        }

        .auth-tabs .nav-link.active {
            background: linear-gradient( 135deg, #2563eb, #4f46e5, #06b6d4) !important;
            color: #ffffff !important;
            box-shadow: 0 10px 25px rgba(37,99,235,.25);
        }
