/* =========================================
   PÁGINA DE INSCRIPCIÓN
   Colegio de Contadores Públicos de Tumbes
   ========================================= */

.inscripcion-container {
    width: 100%;
    max-width: 650px;
    margin: 50px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.10);
}

/* =========================================
   ENCABEZADO
   ========================================= */

.inscripcion-header {
    text-align: center;
    margin-bottom: 35px;
}

.inscripcion-header i {
    font-size: 45px;
    color: #0756c9;
    margin-bottom: 15px;
}

.inscripcion-header h1 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 700;
    color: #1d1d1d;
}

.inscripcion-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #777;
}


/* =========================================
   CAMPOS DEL FORMULARIO
   ========================================= */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: #ffffff;
    color: #555;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* =========================================
   EFECTO AL SELECCIONAR CAMPO
   ========================================= */

.form-group input:focus,
.form-group select:focus {
    border-color: #0756c9;
    box-shadow: 0 0 0 3px rgba(7, 86, 201, 0.10);
}

/* =========================================
   PLACEHOLDER
   ========================================= */

.form-group input::placeholder {
    color: #aaa;
}


/* =========================================
   BOTÓN
   ========================================= */

.form-button {
    margin-top: 30px;
}

.form-button button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #0756c9, #078eea);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button button i {
    margin-right: 8px;
}

.form-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(7, 86, 201, 0.25);
}


/* =========================================
   FONDO DE LA PÁGINA
   ========================================= */

body {
    background: #f5f7fb;
}


/* =========================================
   RESPONSIVE - TABLET
   ========================================= */

@media (max-width: 768px) {

    .inscripcion-container {
        margin: 30px 20px;
        padding: 30px 25px;
    }

    .inscripcion-header h1 {
        font-size: 26px;
    }

}


/* =========================================
   RESPONSIVE - CELULAR
   ========================================= */

@media (max-width: 480px) {

    .inscripcion-container {
        margin: 20px 15px;
        padding: 25px 20px;
    }

    .inscripcion-header i {
        font-size: 38px;
    }

    .inscripcion-header h1 {
        font-size: 23px;
    }

    .inscripcion-header p {
        font-size: 13px;
    }

    .form-group input,
    .form-group select {
        height: 48px;
    }

}
/* =========================================
   ENCABEZADO DE INSCRIPCIÓN
   ========================================= */

.inscripcion-navbar {
    width: 100%;
    height: 90px;
    background: linear-gradient(135deg, #680c02, #ac1c06);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
}
.navbar-container {
    max-width: 1200px;
    height: 90px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.navbar-logo {
    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;
}

.navbar-logo img {
    width: 92px;
    height: 92px;
    object-fit: contain;

    background: #fff;
    border-radius: 50%;

    padding: 4px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Título */

.navbar-title {
    flex: 1;
    padding-left: 20px;
}

.navbar-title h1 {
    margin: 0;
    color: #fff;

    font-size: 21px;
    font-weight: 700;

    letter-spacing: 0.3px;
}

.navbar-title span {
    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
}

/* Botón */

.navbar-action a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 11px 20px;

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.navbar-action a:hover {
    background: #fff;
    color: #940700;

    text-decoration: none;
}
@media (max-width: 768px) {

    .inscripcion-navbar {
        height: auto;
    }

    .navbar-container {
        height: auto;
        min-height: 80px;

        padding: 10px 15px;
    }

    .navbar-logo {
        width: 70px;
        height: 70px;
    }

    .navbar-logo img {
        width: 68px;
        height: 68px;
    }

    .navbar-title {
        padding-left: 10px;
    }

    .navbar-title h1 {
        font-size: 14px;
        line-height: 18px;
    }

    .navbar-title span {
        font-size: 11px;
    }

    .navbar-action a {
        padding: 8px 10px;
        font-size: 12px;
    }

    .navbar-action a i {
        display: none;
    }
}