/* Fondo de la página con imagen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    background: url("https://i.ibb.co/QDbCknk/Whats-App-Image-2024-01-12-at-10-44-09-AM.jpg") no-repeat center center fixed; /* Imagen de fondo */
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Capa oscura encima del fondo */
}

/* Contenedor del formulario */
.login-container {
    position: relative;
    z-index: 2; /* Asegura que el formulario esté sobre el overlay */
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-sizing: border-box;
}

/* Logo en la parte superior */
.logo {
    width: 100px;
    margin-bottom: 20px;
}

/* Título del formulario */
h2 {
    color: #333;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.input-icon {
    position: relative;
    width: 100%; 
    box-sizing: border-box;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
}

.input-group input {
    width: 100%;
    padding: 10px 10px 10px 35px; 
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box; 
}

.input-group input:focus {
    border-color: #0056b3;
    outline: none;
}

/* Botón de login */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box; 
}

.btn-login:hover {
    background-color: #004494;
}


.note {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

.note a {
    color: #0056b3;
    text-decoration: none;
}

.note a:hover {
    text-decoration: underline;
}




