* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* cambiar el color se resaltado en los bordes */
    outline-color: #007bff;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #050505;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
    padding: 0 0.5rem;
}

.form-container {
    background: #ffffff17;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    /* backdrop-filter: blur(10px); */
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
button {
    width: 100%;
    padding: 10px;
    border: 1px solid #252525;
    border-radius: 4px;
    box-sizing: border-box;
    background: #131313;
    color: white;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

/* Otras reglas CSS anteriores permanecen iguales */

.terms-checkbox {
    display: flex;
    align-items: center;
    user-select: none;
}

.terms-checkbox input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

.terms-checkbox label {
    margin: 0;
    font-size: 1em;
    /* Ajusta según sea necesario */
}

.logo {
    aspect-ratio: 16/9;
    max-width: 100%;
    height: auto;
    padding: 1rem;
}