/* Fondo dividido */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f5f5f5 50%, #3369ff 50%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tarjeta de inicio de sesión */
.login-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* Títulos */
h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

p {
    font-size: 14px;
    color: #777;
}

/* Inputs */
.input-field {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: none;
    border-radius: 8px;
    background-color: #f0f0f0;
    font-size: 14px;
}

/* Botón */
.login-button {
    width: 100%;
    padding: 12px;
    background-color: #4a3aff;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #372ee6;
}

/* Enlaces */
.forgot-password,
.register-link {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
}

.forgot-password:hover,
.register-link:hover {
    text-decoration: underline;
}

/* Mensaje de error */
.error-message {
    color: red;
    margin-top: 15px;
    font-size: 14px;
}