/* Made with love by Mutiullah Samim*/



body{
    background-image: url("../img/fondoLoginPhenm.jpg");
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    /*background-position: center;*/
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow: hidden;
}

/* Contenedor para el formulario (posicionado en la parte media derecha) */
.container {
    position: absolute; 
    /*transform: translateY(-50%);  Ajusta la posición para centrarlo verticalmente */
    /*z-index: 9998;  Asegura que esté por encima de otros elementos */
    /*height: auto;  Altura ajustable */
}

.container {
    width: 50%!important;
    margin-top: 20vh!important;
    left: 62vw!important;
    height: 100vh!important;
    width: 100vw!important;
}

.card{
    height: auto;
    width: 30vw;
}

.card *{
    font-size: clamp(1rem, 2vw, 1rem);
}

@media (min-width: 2560px){

    .card *, .modal-content *{
        font-size: clamp(1rem, 2vw, 2rem);
    }

}

@media (min-height: 700px){

    .card .input-group{
        margin-bottom: 30px;
    }

}

input[type="email"]{
    margin-bottom: 20px;
}

.card{
    margin-top: auto;
    margin-bottom: auto;
}

.card-header h4{
    color: black;
}

.input-group-prepend span{
    width: 50px;
    background-color: #C0C0C0;
    color: black;
    border:0 !important;
}
th{
    border: 1px solid #999;
    padding-right:5px; 
    padding-left:5px; 
    font-size:80%;
    background-color: #339bb9;
    color:#ffffff;
}
td{
    border: 1px solid #999;
    padding-right:5px; 
    padding-left:5px;
    font-size:70%;
}
h5 {
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
}
.btnColorSubmit{
    background-color: #337cd3;
}
h1 {
    font-weight: bold;
    font-style: normal;
    color: #FDFDF6;
}



.headerCardTest {
    background-color: #12489e;
}

/* Estilos modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    margin-top: 30px;
    height: auto;
    width: 30vw;
    top: 30vh;
}


/* Add Animation */
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 40%;
        opacity: 1;
    }
}

/* Modal Header */
.modal-header {
    padding: 16px;
    background-color: #12489e;
    color: white;
}

/* Modal Body */
.modal-body {
    padding: 16px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #18697c;
    color: white;
}

