body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #E3E4E5; /* Sustituido Pantone 672 C */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(134, 14, 84, 0.3); /* Pantone 235 C */
    width: 320px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 10px;
    color: #860E54; /* Pantone 235 C */
}

.subtitulo {
    font-size: 0.9em;
    color: #BE79B2; /* Pantone 2351 C */
    margin-bottom: 1.5em;
}
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 1em;
    border: 2px solid #BE79B2; /* Pantone 2351 C */
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #D15889; /* Pantone 2046 C */
}

button {
    width: 100%;
    padding: 12px;
    background: #860E54; /* Pantone 235 C */
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #D15889; /* Pantone 2046 C */
}

.error {
    background: #FFEDF5;
    color: #D15889;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 0.9em;
}
.exito {
    background: #E6FFED;
    color: #2ECC71;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 0.9em;
}
