/* Sobrescribir el fondo del layout guest */
body.login-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%) !important;
    margin: 0;
    padding: 0;
}

.thunderpick-login {
    min-height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.thunderpick-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 700px;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.03) 10px, rgba(255, 215, 0, 0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(192, 192, 192, 0.02) 10px, rgba(192, 192, 192, 0.02) 20px);
    pointer-events: none;
    z-index: 1;
    border-radius: 30px;
}

.lightning-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.login-card {
    background: rgba(26, 26, 46, 0.95);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
    max-width: 450px;
    width: 100%;
    margin: 20px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffd700 0%, #c0c0c0 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    text-align: center;
}

.logo-subtitle {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    letter-spacing: 3px;
    text-align: center;
}

.welcome-banner {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    padding: 15px 20px;
    margin: 20px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
}

.welcome-text {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.flag-icon {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 10px;
}

.login-body {
    padding: 30px;
}

.thunderpick-input {
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #fff;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.thunderpick-input:focus {
    background: rgba(15, 15, 35, 0.9);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    color: #fff;
}

.thunderpick-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-icon {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-left: none;
    border-radius: 0 10px 10px 0;
    color: #ffd700;
}

.login-btn {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border: none;
    border-radius: 10px;
    color: #1a1a2e;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

.login-links {
    text-align: center;
    margin-top: 20px;
}

.login-links a {
    color: rgba(255, 215, 0, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: #ffd700;
}

.wolf-decoration {
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    color: #ffd700;
}

.wolf-left {
    left: 5%;
    top: 20%;
}

.wolf-right {
    right: 5%;
    bottom: 20%;
}

.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3) !important;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
}
