* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #d4e9e2, #f9f9f9);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    text-align: center;
}

.logo {
    margin-bottom: 25px;
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

h1 {
    color: #006241;
    font-size: 28px;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.alert {
    background: #fdf2f2;
    color: #e74c3c;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #fadbd8;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border 0.3s;
}

input:focus {
    outline: none;
    border-color: #006241;
    box-shadow: 0 0 0 3px rgba(0, 98, 65, 0.15);
}

.btn {
    background: #006241;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn:hover {
    background: #004d33;
}

.links {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.links a {
    color: #006241;
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
}

.links a:hover {
    text-decoration: underline;
}

/* Estilos para el icono de ojo */
.password-container {
    position: relative;
}

.password-container .ojito {
    position: absolute;
    right: 12px;
    top: 50px;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
    font-size: 18px;
}

.password-container .ojito:hover {
    color: #006241;
}