 /* 📌 Estilos Generales */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* 📌 Contenedor Principal */
.register-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin-top: -40px;
}

/* 📌 Contenedor del Logo */
.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 120px;
    height: auto;
}

/* 📌 Contenedor del Formulario */
.register-container {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.1);
}

/* 📌 Inputs */
input {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #222;
    color: white;
}

button {
    background-color: #6200ea;
    color: white;
    border-radius: 8px;
    padding: 14px;
    width: 100%;
    cursor: pointer;
}

/* 📌 Mensajes */
.error-message { color: red; }
.success-message { color: green; }
