/* Signup wrapper */
.signup-wrapper {
    background: linear-gradient(135deg, #fbf5ff 35%, #effcf8 100%);
    padding-bottom: 90px;
}

/* Boton volver */
.volver {
    display: inline-block;
    padding: 40px 48px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.volver:hover {
    color: #6f2e98;
    transform: translateY(-1px);
}

/* Signup card */
.signup-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 30px;
    width: calc(100% - 48px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.selector {
    display: flex;
    background: #f3f4f6;
    border-radius: 18px;
    padding: 2px;
    margin-bottom: 24px;
}

.selector-btn {
    flex: 1; 
    text-align: center;
    padding: 8px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    color: #666;
}

.selector-btn-activo {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    background: white;
    color: #1a1a2e;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.signup-card h2 {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 8px;
}

.signup-card p {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 16px;
    color: #808080;
    padding-bottom: 35px;
}

/* Formulario */
.signup-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nombre-apellido {
    display: flex;
    gap: 16px;
}

.nombre-apellido .campo-fill {
    flex: 1;
}

.campo-fill {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.signup-card label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 450;
    color: #686868;
}

.signup-card input {
    font-family: 'Inter', sans-serif;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 14px;
    width: 100%;
    border: none;
    padding: 10px 14px;
}

.campo-fill select {
    font-family: 'Inter', sans-serif;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 14px;
    width: 100%;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    appearance: none;
    color: #686868;
}

/*Botones */
.buttons {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    gap: 12px;
}

/* Crear cuenta */
.signup-card button {
    font-family: 'Inter', sans-serif;
    background: #6f2e98;
    color: white;
    border: none;
    border-radius: 16px;
    padding: 12px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    width: 80%;
    margin: 0 auto;
    transition: all 0.2s;
}

.signup-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ayuda */
.ayuda {
    padding-top: 30px;
}

.ayuda-texto {
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #4b5666;
}

.ayuda-texto a {
    text-decoration: none;
    color:#6f2e98;
    transition: all 0.2s;
}

.ayuda-texto a:hover {
    transform: translateY(-1px);
}