/* Asegúrate de que esto está al inicio del archivo CSS */
body {
    font-family: Arial, sans-serif;
    background: url('INGEMonitorpro/img/VarianteSur.webp') no-repeat center center fixed; /* Ajusta la ruta según la ubicación real de tu imagen */
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Restante del CSS sigue igual */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.login-box {
    text-align: center;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.textbox {
    margin-bottom: 20px;
    position: relative;
}

.textbox input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: #3737dc;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.btn:hover {
    background-color: #5555f2;
}
