/* Estilo del Cuerpo*/
body{
    margin: 0;
    padding: 0;
    font-family: 'Arial',sans-serif;
    background: linear-gradient(to bottom, #0C1550, #2BCFFB);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* contenedor principal*/
.contenedor-login{
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px #00000033;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

/* titulo formulario*/
.titulo-login{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 40px;
    }

/*grupos de entrada*/
.grupo-input{
    position: relative;
    margin-bottom: 25px;
    }

/*grupos de entrada 2*/
.grupo-input input{
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 2px solid #64CCC5;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

/*etiquetas de los campos*/
.grupo-input label{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: #999;
    transition: 0.3s ease all;
    pointer-events: none;
    padding-left: 5px;
    }

/*Estilo cuando el campo esta enfocado o no tiene texto*/
.grupo-input input:focus+label {

    top: -25px;
    font-size: 12px;
    color: #0C1550;
    }

/*Enlace de recuperación de contraseña*/
.olvide-contraseña {
    text-align: right;
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    color: #2A9CF9;
    text-decoration: none;
    font-weight: bold;
    }

/*Botón de envio*/
.boton-login {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #2A9CF9, #ffffff);
    border: none;
    border-radius: 20px;
    color: #030000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    }

/*Cambia el color del botón al pasar el cursor*/
.boton-login:hover {
    background: linear-gradient(to right, #ffffff, #2A9CF9);
    }

.registrar{
        position: relative;
        top:50%;
        margin: -5px 0 20px 5px;
        color: rgb(3, 97, 0);
        cursor: pointer;
        transform: translateY(60%);
        text-align: right;
        font-size: 18px;
    }
    
.registrar:hover{
        text-decoration: underline;
    }
