/* ================= RESET IMPORTANTE ================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ================= BODY ================= */

.login-body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 20% 20%, #1e293b, #0b0f19 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* ================= CARD ================= */

.modern-login {
    width: 420px;
    padding: 50px 50px;
    background: rgba(15, 23, 42, 0.90);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* ================= BRAND ================= */

.login-brand {
    text-align: center;
    margin-bottom: 35px;
}

.logo-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.login-brand h2 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
}

.login-brand p {
    color: #94a3b8;
    font-size: 13px;
}

/* ================= INPUT WRAPPER ================= */

.modern-input {
    position: relative;
    width: 100%;
    margin-bottom: 22px;
}

/* ICONO */

.modern-input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

/* INPUT */

.modern-input input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f1f5f9;
    font-size: 14px;
    transition: all .2s ease;
}

.modern-input input::placeholder {
    color: #64748b;
}

.modern-input input:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

/* SELECT — mismo estilo que input */

.modern-input select {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f1f5f9;
    font-size: 14px;
    transition: all .2s ease;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.modern-input select option {
    background: #1e293b;
    color: #f1f5f9;
}

.modern-input select:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

/* ================= CHECKBOX ================= */

.modern-options {
    margin-bottom: 28px;
    font-size: 13px;
    color: #94a3b8;
}

.modern-options input[type="checkbox"] {
    accent-color: #2563eb;
}

/* ================= BUTTON ================= */

.modern-btn {
    width: 100%;
    height: 50px;
    border-radius: 16px;
    border: none;
    background: #2563eb;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s ease;
    box-shadow: none;
}

.modern-btn:hover {
    background: #1e40af;
    transform: none;
    box-shadow: none;
}

.modern-btn:active {
    transform: scale(.98);
}

