html,
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background: linear-gradient(to right, #005b97, #1e9cd7);
    padding: 1rem;
    color: white;
    display: flex;
    align-items: center;

}

@media (max-width: 991px) {
    #navbarNav {
        justify-content: flex-end !important;
        text-align: right;
    }
}

main {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.card-title {
    color: #005b97;
    margin-left: 7px;
    margin-top: 5px;
}

.edit_entrevista {
    margin-right: 20px;
    margin-bottom: 10px;
}

.test .card {
    border-radius: 20px !important;
    font-size: 14px;
}

.test .card-header {
    border-radius: 20px !important;
    background: linear-gradient(to right, #005b97, #1e9cd7);
    color: white;
}

.btn-circle {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}


/*buttons actividades*/

.btn-circle-red {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
}

.btn-circle-blue {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
}

.btn-circle-red+.btn-circle-blue {
    margin-left: 4px;
}




.form-check-label {
    align-items: center;
    justify-content: center;
    text-align: left;
    width: 95%;
    margin-bottom: 15px;
}


.form-check-label input[type="radio"] {
    margin-right: 8px;
}


@media (min-width: 992px) {
    .col-lg-2 {
        flex-direction: row;
        justify-content: top;
        align-items: center;

    }
}



/*columnas numeros */
.pagination {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
}

.page-item {
    flex: 0 0 50px;
    height: 50px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border-color: #1e9cd7;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.page-link:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}



.icon-txt {
    font-size: 1.3rem;
}

.icon {
    font-size: 1.8rem;
}

body {
    background-color: #eeeeee;
}

.logo {
    width: auto;
    object-fit: contain;
    height: 50px;
}

@media (max-width: 767px) {
    .logo {
        height: 35px;
    }
}


.masthead {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80vh;

}

.masthead h1 {
    font-size: 4rem;
    font-family: "Poppins";
    font-weight: bold;
    color: #005b97;
    text-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .masthead h1 {
        font-size: 3rem;
    }
}


.masthead h3::before {
    content: 'VIVE INTENSAMENTE TU';
    font-size: 200%;
    font-family: "Poppins";
    animation-name: spin;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    color: #005b97;
    font-style: italic;
    align-items: center;
}

@media (max-width: 767px) {
    .masthead h3::before {
        font-size: 1.9rem;
    }
}

.masthead h3::before {
    content: 'VIVE INTENSAMENTE TU';
    font-size: 200%;
    font-family: "Poppins";
    animation-name: spin;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    color: #005b97;
    font-style: italic;
    align-items: center;
}

@media (max-width: 767px) {
    .masthead h3::before {
        font-size: 1.9rem;
    }
}

@keyframes spin {
    0% {
        content: "VIVE INTENSAMENTE TU PRESENTE ";
        opacity: 1;
    }

    50% {
        content: "VIVE INTENSAMENTE TU PROPOSITO ";
        opacity: 1;
    }

    100% {
        content: "VIVE INTENSAMENTE TU POTENCIAL ";
        opacity: 1;
    }
}

.masthead .logo svg {
    width: 200px;
    height: auto;
}

.evaluado {
    color: #005b97;
}

.icono-evaluado {
    font-size: 22px;
}


/* menu navbar */
.dropdown-menu .dropdown-item:hover {
    background-color: #cce5ff;
    color: #005b97;
}

.dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
}

form .txt_field {
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}

.txt_field input {
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    background: none;
    outline: none;
}

.txt_field label {
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}

.txt_field span::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2691d9;
    transition: .5s;
}

.txt_field input:focus~label,
.txt_field input:valid~label {
    top: -5px;
    color: #2691d9;
}

.txt_field input:focus~span::before,
.txt_field input:valid~span::before {
    width: 100%;
}

.eye {
    position: absolute;
    right: 0;
    transform: translateY(-20px);
    color: #adadad;
    scale: 1.5;
}

#hide1 {
    display: none;
}

#hide12 {
    display: none;
}

.pass {
    margin: -5px 0 20 5px;
    color: #a6a6a6;
    cursor: pointer;
}

.pass:hover {
    text-decoration: underline;
}

input[type="submit"] {
    width: 100%;
    height: 50px;
    border: 1px solid;
    background: #2691d9;
    border-radius: 25px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

input[type="submit"]:hover {
    border-color: #2691d9;
    transition: .5s;
}

.signup_link {
    margin: 30px 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
}

.signup_link a {
    color: #2691d9;
    text-decoration: none;
}

.signup_link a:hover {
    text-decoration: underline;
}

.resuelto {
    opacity: 0.75;
    /* Deshabilita el div reduciendo la opacidad */
    border: 2px solid rgb(20, 195, 20);
    /* Aplica un borde verde */
    pointer-events: none;
    /* Deshabilita los eventos del mouse en el div */
}