/* Estilos para el contenedor del formulario */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
}

.form-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #094bad; /* Azul Tecnológico */
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.form-card p {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Grupos de entrada */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #53cc79; /* Verde Neón */
}

.input-group input {
    width: 100%;
    padding: 10px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

/* Fila doble (Nombre/Apellido y Contraseñas) */
.input-row {
    display: flex;
    gap: 15px;
}

.input-row .input-group {
    flex: 1;
}

/* Campo de TikTok especial */
.input-with-icon {
    display: flex;
    align-items: center;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding-left: 10px;
}

.input-with-icon input {
    border: none !important;
}

.prefix {
    color: #53cc79;
    font-weight: bold;
}

/* Botón Principal */
.btn-primary {
    width: 100%;
    padding: 12px;
    background: #094bad;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #53cc79;
    color: #0f172a;
}

.footer-text {
    margin-top: 20px;
    font-size: 0.8rem;
}

.footer-text a {
    color: #53cc79;
    text-decoration: none;
}