body.login {
    background-color: #000;
    background: 
        radial-gradient(circle at 27% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%), 
        radial-gradient(circle at 99% 33%, rgba(169, 1, 219, 1) 0%, rgba(169, 1, 219, 0) 80%), 
        radial-gradient(circle at 99% 45%, rgba(88, 20, 225, 1) 0%, rgba(88, 20, 225, 0) 80%), 
        radial-gradient(circle at 57% 21%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%), 
        radial-gradient(circle at 61% 36%, rgba(169, 1, 219, 1) 0%, rgba(169, 1, 219, 0) 80%), 
        radial-gradient(circle at 32% 17%, rgba(88, 20, 225, 1) 0%, rgba(88, 20, 225, 0) 80%), 
        radial-gradient(circle at 48% 33%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%), 
        radial-gradient(circle at 29% 84%, rgba(169, 1, 219, 1) 0%, rgba(169, 1, 219, 0) 80%), 
        radial-gradient(circle at 29% 76%, rgba(88, 20, 225, 1) 0%, rgba(88, 20, 225, 0) 80%), 
        radial-gradient(circle at 80% 83%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%), 
        radial-gradient(circle at 27% 13%, rgba(169, 1, 219, 1) 0%, rgba(169, 1, 219, 0) 80%);
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    position: relative;
}

/* Eliminar completamente el language-switcher */
.language-switcher,
#language-switcher,
form#language-switcher {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

#login {
    width: 400px;
    padding: 8% 0 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 16%);
}

.login form {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.login form .input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    padding: 15px 20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.login form .input:focus {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.login form .input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    text-align: left;
    width: 100%;
}

.login .button.button-primary {
    background: linear-gradient(135deg, 
        rgba(169, 1, 219, 1) 0%, 
        rgba(88, 20, 225, 1) 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(169, 1, 219, 0.4),
        0 0 20px rgba(88, 20, 225, 0.3);
    position: relative;
    overflow: hidden;
}

.login .button.button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

.login .button.button-primary:hover::before {
    left: 100%;
}

.login .button.button-primary:hover,
.login .button.button-primary:focus {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(169, 1, 219, 0.6),
        0 0 30px rgba(88, 20, 225, 0.4);
}

.login h1 {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.login h1 a {
    background-image: url('../images/Logo en blanco sin fondo.webp') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 403px !important; /* Aumentado 20% más (336px * 1.2 = 403px) */
    height: 144px !important; /* Aumentado 20% más (120px * 1.2 = 144px) */
    margin: 0 auto !important;
    display: block !important;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    text-indent: -9999px;
    overflow: hidden;
}

.login #nav, .login #backtoblog {
    text-align: center;
    margin-top: 20px;
}

.login #nav a, .login #backtoblog a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.login #nav a:hover, .login #backtoblog a:hover {
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.login #login_error, .login .message {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 20px;
}

.login .forgetmenot {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin-bottom: 20px !important;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login .forgetmenot input[type="checkbox"] {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    flex-shrink: 0;
}

.login .forgetmenot label {
    margin: 0;
    flex: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.login .forgetmenot input[type="checkbox"]:checked::before {
    color: rgba(255, 255, 255, 1);
}

.login .login-action-login p.forgetmenot {
    float: none;
    margin-bottom: 20px;
}

.login p.submit {
    margin-top: 25px;
    text-align: center;
}

.jdt-support-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: linear-gradient(135deg, 
        rgba(169, 1, 219, 1) 0%, 
        rgba(88, 20, 225, 1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(169, 1, 219, 0.4),
        0 0 20px rgba(88, 20, 225, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.jdt-support-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 25px rgba(169, 1, 219, 0.6),
        0 0 30px rgba(88, 20, 225, 0.5);
    color: #fff;
    text-decoration: none;
}

.jdt-support-button::before {
    content: '🎧';
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    #login {
        width: 90%;
        padding: 5% 0 0;
        min-height: calc(100vh - 10%);
    }
    
    .login form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .login h1 a {
        width: 280px !important;
        height: 100px !important;
    }
    
    .jdt-support-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    #login {
        width: 95%;
        padding: 3% 0 0;
    }
    
    .login form {
        padding: 25px 15px;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .login h1 a {
        width: 240px !important;
        height: 85px !important;
    }
    
    .login form .input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .login .button.button-primary {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .jdt-support-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 11px;
        border-radius: 25px;
    }
    
    .jdt-support-button::before {
        font-size: 14px;
    }
}

@media screen and (max-width: 320px) {
    .login form {
        padding: 20px 10px;
    }
    
    .login h1 a {
        width: 200px !important;
        height: 70px !important;
    }
    
    .jdt-support-button {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 10px;
    }
}