/* ==========================================================================
   LOGIN — Paleta Indoamérica (Persian Indigo + Vivid Tangelo)
   ========================================================================== */

body {
    background: linear-gradient(135deg, #1f0b3c 0%, #3a1467 50%, #2a0f52 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Orbes decorativos de fondo */
body::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(243,113,33,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(100, 74, 152, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.login-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    padding: 2rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.login-header {
    margin-bottom: 2.5rem;
}

.logo-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e5651a 100%);
    color: white;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 12px 30px rgba(243, 113, 33, 0.5);
    transition: transform 0.3s var(--ease-apple);
}

.logo-icon:hover {
    transform: scale(1.05) rotate(-3deg);
}

.login-header h2 {
    font-size: 1.9rem;
    margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-weight: 800;
}

.login-header p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.icon-input {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.05rem;
    pointer-events: none;
    transition: color 0.3s;
}

.input-premium {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 11px !important;
    color: #ffffff !important;
    padding-left: 3rem;
    height: 52px;
}

.input-premium::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.input-premium:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--accent-orange) !important;
    box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.25) !important;
    color: #ffffff !important;
}

.input-group:focus-within .icon-input {
    color: var(--accent-orange);
}

.btn-block {
    width: 100%;
    height: 52px;
    margin-top: 1.2rem;
    font-size: 1.05rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e5651a 100%) !important;
    border-radius: 11px !important;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 24px rgba(243, 113, 33, 0.45) !important;
    transition: all 0.3s var(--ease-apple);
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(243, 113, 33, 0.6) !important;
}

.form-footer {
    margin-top: 1.8rem;
}

.link-apple {
    color: var(--accent-yellow, #ffd54c);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s;
    letter-spacing: 0.01em;
}

.link-apple:hover {
    opacity: 0.75;
}
