
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../img/breadcrumb-bg.jpg');
    background-size: cover; /* Ajusta la imagen para que cubra todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    font-family: 'Playfair Display', serif; /* Fuente elegante */
}

.login-container {
    display: flex;
    width: 800px;
    height: 500px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.login-left {
    background-color: #000000;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-left img {
    width: 200px;
}

.login-right {
    background-color: white;
    width: 60%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 30px;
    font-weight: 600;
}

.login-right input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.login-right button {
    padding: 15px;
    background-color: #000000;
    color: white;
    border: none;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.login-right button:hover {
    background-color: #272a2e;
}

.login-right .forgot {
    margin-top: 40px;
    text-align: right;
}

.login-right .forgot a {
    color: #000000;
    text-decoration: none;
}

.login-right .forgot a:hover {
    text-decoration: underline;
}

/* Media Queries para dispositivos más pequeños */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .login-left, .login-right {
        width: 100%;
        padding: 30px;
    }

    .login-left {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px;
    }

    .login-right {
        padding: 30px 20px;
    }

    .login-right h2 {
        font-size: 24px;
    }

    .login-right button {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .login-container {
        width: 100%;
        height: auto;
    }

    .login-left img {
        width: 150px;
    }

    .login-right h2 {
        font-size: 20px;
    }

    .login-right input {
        padding: 12px;
        font-size: 14px;
    }

    .login-right button {
        padding: 12px;
        font-size: 14px;
    }

    .login-right .forgot {
        margin-top: 20px;
        font-size: 14px;
    }
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    flex: 1;
    padding-right: 40px; /* Añadir espacio para el ícono */
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin-top:-15px;
}
