/*
 * Archivo: clientes_servicios/estilos.css
 * Versión: 1.2
 * Fecha de modificación: 10/09/2026
 */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    background: #f2f4f7;
    color: #333;
}

.portal-contenedor {
    padding-top: 25px;
}

/*
 * =========================================================
 * CONTENEDOR LOGIN
 * =========================================================
 */

.login-contenedor {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


/*
 * =========================================================
 * TARJETA LOGIN
 * =========================================================
 */

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow:
        0 4px 20px rgba(
            0,
            0,
            0,
            0.10
        );
}


/*
 * =========================================================
 * ICONO LOGIN
 * =========================================================
 */

.login-logo {
    text-align: center;
    margin-bottom: 15px;
    color: #198754;
    font-size: 55px;
}


/*
 * =========================================================
 * TÍTULOS LOGIN
 * =========================================================
 */

.login-card h1 {
    text-align: center;
    margin:
        0 0 8px 0;
    font-size: 1.7rem;
    color: #222;
}

.login-subtitulo {
    text-align: center;
    margin:
        0 0 25px 0;
    color: #777;
    line-height: 1.5;
}


/*
 * =========================================================
 * CAMPOS LOGIN
 * =========================================================
 */

.campo-login {
    margin-bottom: 18px;
}

.campo-login label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #444;
}

.campo-login label i {
    margin-right: 5px;
    color: #198754;
}

.campo-login input {
    width: 100%;
    padding: 11px 12px;
    border:
        1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}

.campo-login input:focus {
    border-color: #198754;
    box-shadow:
        0 0 0 3px rgba(
            25,
            135,
            84,
            0.12
        );
}


/*
 * =========================================================
 * BOTÓN LOGIN
 * =========================================================
 */

.boton-ingresar {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 12px;
    background: #198754;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.1s ease;
}

.boton-ingresar:hover {
    background: #157347;
}

.boton-ingresar:active {
    transform: scale(0.99);
}

.boton-ingresar i {
    margin-right: 7px;
}


/*
 * =========================================================
 * ERROR
 * =========================================================
 */

.mensaje-error {
    margin-bottom: 18px;
    padding: 11px 13px;
    border-radius: 6px;
    background: #f8d7da;
    color: #842029;
    border:
        1px solid #f1aeb5;
    font-size: 0.95rem;
}

.mensaje-error i {
    margin-right: 5px;
}


/*
 * =========================================================
 * AYUDA LOGIN
 * =========================================================
 */

.login-ayuda {
    margin-top: 22px;
    padding-top: 18px;
    border-top:
        1px solid #eee;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    line-height: 1.5;
}

.login-ayuda i {
    margin-right: 4px;
}


/*
 * =========================================================
 * ANCHO GENERAL DEL PORTAL
 * =========================================================
 *
 * Todas las secciones principales utilizan el mismo ancho:
 * 90% de la pantalla y centradas horizontalmente.
 *
 * Las tarjetas internas de servicios mantienen su propio
 * sistema de columnas mediante .servicios-grid.
 *
 * =========================================================
 */

.portal-header {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.info-dominio {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.estado-cuenta {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.servicios-grid {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


/*
 * =========================================================
 * INFORMACIÓN DEL DOMINIO
 * =========================================================
 */

.info-dominio {
    margin-top: 15px;
    margin-bottom: 15px;
}

.info-item {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow:
        0 2px 8px rgba(
            0,
            0,
            0,
            0.08
        );
}

.info-datos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.info-item span {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #212529;
}


/*
 * =========================================================
 * RESPONSIVE
 * =========================================================
 */

@media (max-width: 600px) {

    .portal-header,
    .info-dominio,
    .estado-cuenta,
    .servicios-grid {
        width: 95%;
    }

    .info-datos {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


@media (max-width: 480px) {

    .login-card {
        padding: 25px 20px;
    }
}

.portal-creditos {
    text-align: center;
    margin-top: 25px;
    color: #888;
    font-size: 0.85rem;
}

.portal-creditos i {
    margin-right: 5px;
    color: #198754;
}