/* ============================
   TIPOGRAFÍA GLOBAL
============================ */
body, form, label, input, button, textarea {
    font-family: 'Poppins', sans-serif;
}

/* ============================
   FORMULARIO GENERAL
============================ */
#tcsp-register-form {
    max-width: 600px;
    margin: 0 auto;
}

.tcsp-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.tcsp-group label {
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 15px;
}

/* Inputs generales */
#tcsp-register-form .tcsp-group input,
#tcsp-register-form .tcsp-group select,
#tcsp-register-form .tcsp-step input,
#tcsp-register-form .tcsp-step textarea {
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    padding: 10px 12px;
    transition: border-color .25s;
    width: 100%;
}

/* ============================
   LAYOUT EN FILAS
============================ */
.tcsp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .tcsp-row {
        grid-template-columns: 1fr;
    }
}

/* ============================
   CONTRASEÑA
============================ */
.tcsp-pass-wrapper {
    position: relative;
}

.tcsp-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}

/* ============================
   BOTÓN
============================ */
.tcsp-btn,
#tcsp-register-form button[type="submit"] {
    width: 100%;
    background: #006CFF;
    color: #fff;
    border: 2px solid #006CFF;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.tcsp-btn:hover,
#tcsp-register-form button[type="submit"]:hover {
    background: #fff;
    color: #006CFF;
}

/* ============================
   TÉRMINOS
============================ */
.tcsp-terms {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
}

.tcsp-terms a {
    color: #006CFF;
    text-decoration: none;
}

/* ============================
   PASTILLAS (WIZARD)
============================ */
.tcsp-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tcsp-pill {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 99px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.6;
    background-color: #f0f0f0;
}

.tcsp-pill.active {
    opacity: 1;
    border-color: #000;
}

.tcsp-pill.inactive {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================
   STEPS DEL WIZARD
============================ */
.tcsp-step {
    margin-bottom: 20px;
}

/* ============================
   MENSAJES
============================ */
.tcsp-msg {
    margin-top: 12px;
    text-align: center;
    font-size: 16px;
    color: green;
}

.tcsp-msg.error {
    color: red;
}

/* ============================
   OTROS
============================ */
input[type="file"] {
    padding: 5px 0;
}

a:hover {
    text-decoration: underline;
}

/*LINKS*/
.link-doc, .link-vcp { font-size:14px; display:block; margin-top:8px; color:#007BFF; }
.link-vcp:hover, .link-doc:hover { text-decoration:underline; }

/* BOTONES GENERAL CSS*/
.button-primary, #tcsp-add-plan, #tcsp-add-user {
    background: linear-gradient(90deg, #9333ea, #4f46e5);
    background-size: 200% 100%;
    background-position: left center;
    border: none !important;
    color: #fff !important;
    padding: .5rem 1rem;
    border-radius: 3px;
    transition: background-position 0.8s ease;
}

.button-primary:hover, #tcsp-add-plan:hover, #tcsp-add-user:hover {
    background-position: right center;
}

.button-secondary, #tcsp-view-close {
    background: #e5e5e5;
    color: #787878;
    padding: .5rem 1rem;
    border-radius: 3px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
}
.button-secondary:hover, #tcsp-close-modal:hover {
    background: #d5d5d5;
    transform: translateY(-1px);
    border: 1px solid #787878;
    color: #333;
}

/*MODAL REGISTROS ARTISTAS*/
.hide-mobile {
    display: table-cell;
}
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .tcsp-table td,
    .tcsp-table th {
        font-size: 14px;
    }
}
.hide-mobile {
    display: table-cell;
}
.show-mobile {
  display: none;  
}

@media screen and (max-width: 782px) {

    table.tcsp-table th:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(10)),
    table.tcsp-table td:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(10)) {
        display: none !important;
    }
    
    .show-mobile {
        display: inline-block !important;
    }

}

.tcsp-modal-header {
    width: calc(100% + 50px);
    margin: -25px -25px 25px -25px;
    background: linear-gradient(90deg, #9333ea, #4f46e5);
    padding: 22px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    color: #fff;
}

/* MODAL */
.tcsp-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
}

.tcsp-modal-content {
    background: #fff;
    width: 92%;
    max-width: 500px;
    margin: 10% auto;
    padding: 16px;
    border-radius: 6px;
}

.tcsp-close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}

.register-artist .tcsp-row.two-lf {
    display: flex;
    gap: 100px;
}