body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #007BFF, #00BCD4);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #fff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    width: 320px;
    text-align: center;
}

h2 {
    margin-bottom: 1rem;
    color: #333;
}

label {
    display: block;
    text-align: left;
    margin-top: 10px;
    color: #555;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #0056b3;
}

.mensaje {
    margin-top: 15px;
    font-size: 14px;
}

.mensaje a {
    color: #007BFF;
    text-decoration: none;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}
