/*CSS LOGIN*/
/* ----------------------------
   Login Popup - Estilos
-----------------------------*/

.tcsp-login-popup {
    max-width: 400px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

.tcsp-login-popup .tcsp-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.tcsp-login-popup label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.tcsp-login-popup input[type="text"],
.tcsp-login-popup input[type="email"],
.tcsp-login-popup input[type="password"] {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    transition: border 0.2s;
}

.tcsp-login-popup input:focus {
    outline: none;
    border-color: #007BFF;
}

/* Botón de login */
.tcsp-login-popup button.tcsp-btn {
    width: 100%;
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.tcsp-login-popup button.tcsp-btn:hover {
    background: #0056c1;
}

/* Mensajes de error */
.tcsp-login-errors {
    background-color: #ffe5e5;
    color: #c00;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.tcsp-login-errors p {
    margin: 0;
}

/* Enlaces de recuperación de contraseña */
.tcsp-login-links {
    text-align: right;
    margin-top: 10px;
    font-size: 13px;
}

.tcsp-login-links a {
    color: #007BFF;
    text-decoration: none;
}

.tcsp-login-links a:hover {
    text-decoration: underline;
}
