body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #511111ff, #5f1212ff);
font-family: Arial, sans-serif;
margin: 0;
}
.login-box {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0px 6px 15px rgba(0,0,0,0.4);
width: 350px;
text-align: center;
animation: fadeIn 0.6s ease-in-out;
}
.login-box img {
width: 120px;
margin-bottom: 15px;
}
h2 {
margin-bottom: 20px;
color: #2c3e50;
}
select, input, button {
width: 100%;
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 14px;
box-sizing: border-box;
}
.password-container {
position: relative;
width: 100%;
}
.password-container input {
width: 100%;
padding-right: 35px;
text-transform: none; /* <- No forzar mayúsculas */
}
.password-container .toggle-password {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
cursor: pointer;
font-size: 16px;
color: #555;
}
button {
background: #2c3e50;
color: #fff;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background: #1a242f;
}
.register-btn {
background: #8e1e1e;
margin-top: 10px;
}
.register-btn:hover {
background: #600e0e;
}
.btn-secondary {
background: #888;
}
.btn-secondary:hover {
background: #555;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}