﻿body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.divFondo {
    padding: 0;
    border-radius: 0 1rem 1rem 0;
    background-image: url(../../Images/imagenLogin.jpg); /*url('/PortalDeAspirantes/PortalAspirantesRegistroPosgrado/Images/imagenLogin.jpg');*/
    background-size: cover;
}

.text {
    text-align: left !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    font-family: 'Poppins', sans-serif !important;
    color: white !important;
    padding-bottom: 6px;
}

.text-danger-ibero {
    display: block;
    color: #fff;
    background-color: #e72c54;
    padding-left: .5rem;
    padding-top: .5rem;
    margin-top: -.5rem;
    border-radius: 0 0 .5rem .5rem;
}

.form-group {
    margin-bottom: .5rem;
}

/*Estilos para el modal spinner*/
/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/* Estilos para el spinner */
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    /*margin: 0 auto;*/
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Fin estilos para el modal spinner*/

.text-left-side {
    color: #fff;
}

.loginImage {
    width: 80%;
}

@media (max-width: 750px) {
    #btnIniciaSesion {
        width: 100%;
        display: block;
    }

    #btnRecuperarContrasenia {
        text-align: center;
    }

    .text-left-side {
        text-align: center;
        font-size: 13px;
    }

    .loginImage {
        width: 60%;
        margin: auto;
    }
}

@media (min-width: 751px) {

    #btnRecuperarContrasenia {
        text-align: left;
    }

    .text-left-side {
        text-align: left;
    }
}

.fa {
    color: #e72c54;
}

.fa-asterisk {
    font-size: .7rem;
    margin-left: .2rem;
}

.control-label.text {
    display: flex;
}


/*---------*/

.form-group {
    margin-bottom: .5rem;
}

.control-label.text {
    display: flex;
}

.radio-button {
    position: absolute;
    opacity: 0;
}

.custom-radio {
    display: inline-block;
    position: relative;
    width: 15px;
    height: 15px;
    border: 1px solid #e83136;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    padding: 0.5em;
    margin-right: 0.5em;
}

/*Contorno rojo cuando está seleccionado*/
.radio-button:checked + .custom-radio {
    border-color: #e83136;
}

    /*Punto rojo más pequeño cuando está seleccionado */
    .radio-button:checked + .custom-radio::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        background: #e83136;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

.label-radio-button {
    display: flex;
    align-items: center;
}

.btnAyuda {
    border: none;
    border-radius: 10px;
    background-color: #e30613;
    color: white;
    font-size: x-small;
    font-weight: 600;
    position: relative;
    bottom: 6px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    padding: 0;
    /*margin-left: 12px;*/
}

/*.tooltip {
            position: relative;
            display: inline-block;
            border-bottom: 1px dotted black;
            opacity:initial !important;
            
        }

            .tooltip .tooltiptext {
                visibility: hidden;
                width: 200px;
                background-color: black;
                color: #fff;
                text-align: center;
                border-radius: 6px;
                padding: 5px 0;*/
/* Position the tooltip */
/*position: absolute;
                z-index: 1;
                top: -5px;
                left: 105%;*/
/*border: 1px solid gray*/
/*padding:15px
            }

            .tooltip:hover .tooltiptext {
                visibility: visible;
                background-color:white;
                color:black;
                font-size:16px;
            }*/

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #ccc;
    /*color: #006080;*/
    opacity: initial !important;
    z-index: auto !important;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        position: absolute;
        width: 200px;
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s;
        padding: 15px
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.tooltip-right {
    top: -5px;
    left: 125%;
}

    .tooltip-right::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 100%;
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent #555 transparent transparent;
    }