/* Ajustes generales */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Fondo de respaldo */
}

/* Fondo general del login en pantallas grandes */
.slideshow-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/Platinium.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Contenedor del login */
.login-container {
    position: relative;
    width: 450px; /* Más ancho */
    height: 600px; /* Más alto */
    padding: 60px 40px;
    border-radius: 15px;
    border: 3px solid #9d00ff;
    box-shadow: 0 0 20px #9d00ff;
    text-align: center;
    
    /* Imagen de fondo dentro del login */
    background-image: url('../images/fondoneon.png'); 
    background-size: cover; /* Ahora se expande totalmente */
    background-position: center;
    background-repeat: no-repeat;
}

/* Logo con más margen arriba */
.logo-container {
    position: relative;
    top: -20px; /* Lo sube más */
}

.logo {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    box-shadow: 0 0 15px #00f;
}

/* Inputs */
.input-container {
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #000;
    color: white;
    font-size: 18px;
    border: 2px solid #0011ff;
    box-shadow: 0 0 10px #0011ff;
    transition: 0.3s;
}

input:focus {
    box-shadow: 0 0 20px #9d00ff;
    border: 2px solid #9d00ff;
}

/* Botones */
.button-container {
    margin-bottom: 20px;
}

.login-button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(to right, #0011ff, #9d00ff);
    color: white;
    box-shadow: 0 0 15px #9d00ff;
    transition: 0.3s;
    text-align: center;
}

.login-button:hover {
    box-shadow: 0 0 25px #9d00ff;
    filter: brightness(1.2);
}

.login-button:active {
    background: linear-gradient(to right, #9d00ff, #0011ff);
    box-shadow: 0 0 10px #0011ff;
}

/* Botón de registro */
.register-button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    background: linear-gradient(to right, #00ff88, #0088ff);
    color: white;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.register-button:hover {
    box-shadow: 0 0 20px #00ff88;
    filter: brightness(1.2);
}

.register-button:active {
    background: linear-gradient(to right, #0088ff, #00ff88);
}

/* Media Query para Móviles */
@media screen and (max-width: 768px) {
    .slideshow-container {
        background-image: none; /* Se elimina el fondo general */
    }

    .login-container {
        width: 95%; /* Se adapta mejor */
        height: 650px; /* Aún más alto */
        padding: 50px 30px;
        background-size: cover; /* Se asegura que cubra todo */
    }

    .logo {
        width: 120px; 
        height: 120px;
    }
}
