* {
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

h3 {
    text-align: center;
    font-weight: 400;
    color: #374151;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}


body {
    margin: 0;
    background-color: #f9fafb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor del login */
form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    width: 300px;
}

h2 {
    text-align: center;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #111827;
}

label {
    display: block;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.25rem;
}

input {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

input:focus {
    border-color: #2563eb;
    outline: none;
}

button {
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-radius: 8px;
    background-color: #2563eb;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background-color: #1e40af;
}

.note {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 1rem;
}