/* login.css */

body {
    /* background: linear-gradient(135deg, #4a90e2, #50e3c2); */
    background: linear-gradient(#2196F3, #1976D2, #0D47A1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    width: 320px;
    text-align: center;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em; /* Ajusta el tamaño si quieres */
    margin-bottom: 25px;
    color: #0D47A1;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.4); */
}

input[type="text"],
input[type="password"] {
    width: 90%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #4a90e2;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: #1565C0;
    border: none;
    color: white;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1E88E5;
}

.error {
    color: #d93025;
    margin-bottom: 15px;
    font-weight: 600;
}
