/* Reset de márgenes y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #e8eaeb, #e8eaeb);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: center;
    overflow: hidden; /* Opcional: evita que la imagen salga del contenedor */
    
}

/* Contenedor del login */
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;height: 105vh;
}

/* Caja de login */
.login-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Estilos de los inputs */
.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #56Bfe4;
}

/* Botón de login */
.btn-login {
    background-color: #56Bfe4;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #56Bfe4;
}

/* Responsividad */
@media screen and (max-width: 600px) {
    .login-box {
        padding: 20px;
    }
    h1 {
        font-size: 20px;
    }
}
 
 /* Imagen del cocodrilo */
 .bg-image {
    position: absolute;
    bottom: -120px;
    right: 100;
    
    opacity: 0.8; /* Transparencia opcional */
}
.logo{
    margin-inline-start: 12%;
    max-width: 250px; /* Ajusta el tamaño según lo desees */
}
 /* Estilo responsivo para pantallas pequeñas (móviles) */
 @media screen and (max-width: 768px) {
    .bg-image {
        max-width: 100px; /* Reduce el tamaño del cocodrilo en móviles */
        bottom: 0px; /* Ajusta la posición */
        right: 0px;
    }
     .logo {
        max-width: 160px; /* Reduce el tamaño del cocodrilo en móviles */
        bottom: 30px; /* Ajusta la posición */
        margin-inline-start: 27%;
        right: 130px;
    }
}

/* Estilo específico para pantallas de laptop */
@media (min-width: 1024px) and (max-width: 1440px) {
    .bg-image {
        bottom: 0px; /* Ajusta la posición vertical */
        right: 0px; /* Más cerca del borde derecho */
        max-width: 100px; /* Imagen más grande */
    }
}

/* Estilo para pantallas grandes 
@media screen and (min-width: 1200px) {
    .bg-image, .logo {
        max-width: 200px; /* Tamaño moderado para pantallas grandes 
        bottom: 20px;
        right: 20px;
    }
    
}*/