/* 1. Estilos Globales (reseteo y centrado) */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #e9ecef; /* Fondo gris claro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* 2. Estilos del Contenedor Principal de Registro */
.signup-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Sombra más definida */
    width: 100%;
    max-width: 450px; /* Un poco más ancho que el login */
    text-align: center;
}

.signup-container h2 {
    margin-bottom: 30px;
    color: #343a40;
    font-size: 1.8em;
}

/* 3. Estilos del Formulario y sus Elementos */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-sizing: border-box; 
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #ff0000; /* Borde azul al enfocar */
    outline: none; /* Quita el contorno por defecto del navegador */
}

.hint {
    font-size: 0.85em;
    color: #6c757d;
    margin-top: 5px;
}

/* 4. Estilos para la Casilla de Verificación */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.95em;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    /* Ajusta el tamaño de la casilla */
    width: 16px;
    height: 16px;
}

.checkbox-group a {
    color: #ff0000;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* 5. Estilos del Botón de Registro */
.signup-button {
    width: 100%;
    background-color: #e82e2e; /* Color verde para acción positiva */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.signup-button:hover {
    background-color: #ff2d2d; /* Verde más oscuro al pasar el ratón */
}

/* 6. Estilo del Enlace de Login */
.login-link {
    margin-top: 20px;
    font-size: 0.9em;
}

.login-link a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}