body {
    background-color: #87CEEB;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
}

.logo {
    max-width: 200px; /* Tamaño máximo */
    height: auto; /* Mantiene la proporción */
    display: block;
    margin: 0 auto 10px auto; /* Centrar horizontalmente */
}

h2 {
    font-size: 18px;
    color: #003366;
}

.input-group {
    position: relative;
    margin: 10px 0;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.btn-primary {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #003366;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #0055a5;
}
