/* Fondo general oscuro */
body {
    margin: 0;
   font-family: ‘Inter’, sans,serif;
 background: linear-gradient(135deg, #3e1a4e, #1a1a1a 100%);
    color: #ffffff;
}

/* Contenedor centrado */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

/* Caja del formulario con fondo similar a Discord */
.form-box {
    background-color: #23272a;
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

/* Título */
.form-box h2 {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Estilo para los campos del formulario */
form select,
form input[type="text"],
form input[type="password"],
form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.2rem;
    border: none;
    border-radius: 6px;
    background-color: #2c2f33;
    color: #fff;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
}

/* Placeholder y opciones */
select option {
    background-color: #2c2f33;
    color: #fff;
}

/* Botón estilo Discord */
button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background:  #b483d3 30%;

    color: #131212;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background-color:  #b483d3 30%;
}

/* Enlace a iniciar sesión */
.legal {
    text-align: center;
    font-size: 0.9rem;
    color: #b9bbbe;
}

.legal a {
    color: #274a97;
    text-decoration: none;
    font-weight: bold;
}

.legal a:hover {
    text-decoration: underline;
}