﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #eaf5e9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   
}

.login-container {
    display: flex;
    width: 70%;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: white;
}

.login-image {
    background-size: cover;
    background-position: center;
    border: none;
    background: #059879;
}

/* Control del tamaño del logo según la pantalla */
.login-logo {
    max-width: 120px; /* Tamaño en móvil */
    height: auto;
}

@media (min-width: 768px) {
    .login-logo {
        max-width: 200px; /* Tamaño en escritorio */
    }

    /* Restauramos el comportamiento de altura completa en escritorio si es necesario */
    .login-image {
        min-height: 400px;
    }
}

.login-form {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    margin: 0 0 20px;
    color: #5b8a5a;
}

.input-group {
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.forgot-password {
    text-align: right;
    margin-bottom: 15px;
}

    .forgot-password a {
        color: #5b8a5a;
        text-decoration: none;
        font-size: 14px;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.login-button {
    background-color: #5b8a5a;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

    .login-button:hover {
        background-color: #497647;
    }


