body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, #1f1f2e, #4a4a80); /* Fondo con tonos azul y morado */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container {
    width: 360px;
    background: rgba(31, 31, 46, 0.9); /* Fondo oscuro semi-transparente */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Sombra más pronunciada */
    animation: fadeIn 1.5s ease-in-out;
}

.signin-form {
    width: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #ffffff; /* Blanco para contraste en fondo oscuro */
    font-weight: bold;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    font-size: 1rem;
    color: #cccccc; /* Gris claro para etiquetas */
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #555; /* Bordes oscuros */
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
    background: #2c2c3e; /* Fondo oscuro */
    color: #ffffff; /* Texto blanco */
}

.input-group input:focus {
    border: 1px solid #8e44ad; /* Morado en foco */
    outline: none;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: #8e44ad; /* Botones morados */
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background: #732d91; /* Morado más oscuro en hover */
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
