@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url(Ubuntu-Regular.ttf) format('woff2');
}

*{
  color: #434343;
  font-family: Ubuntu, "times new roman", times, roman, serif;
}


ul {
  font-size: medium;
}

body {
    margin: 0;
    background-image: url('../images/fondo.png');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center;
    font-family: Ubuntu, "times new roman", times, roman, serif;
  
}

img{
    width: 20rem;
  }
.required::after {
    content: ' *';
    color: red;
}
input, select{
box-sizing: border-box;
background-color: #f0f0f0;
display: block;
width:350px;
height: 30px;
text-align: center;
border: none;
color: #333333;
outline: none;
border-radius: 3rem;
}
.g-recaptcha {
     display: flex;
     justify-content: center;
     margin-top: 10px;
}

#form{
padding: 20px;
}
.formrow{
display:flex;
align-items: center; 
margin-bottom: 15px; 
}


label{
width: 130px; 
margin-right: 10px; 
color: #e76700;
font-family: 'AccordAlternate', sans-serif !important;
font-weight: 500; 
font-size: 0.9rem;

}

#container{

justify-content: center;
flex-direction: column;
align-items: center;

}


 #submit_btn:disabled {
            background-color: lightgray;
            color: darkgray;
            cursor: not-allowed;
        }
        
#submit_btn, #btn-cerrar{
width:80%;
margin: auto;
height: 40px;
background-color: #FF670A;
    min-width: 8.125rem;
    color: #F5F5F5;
    border: none;
    border-radius: 0.75rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    align-self: center;
}
#btn-cerrar{
width:200px;
}
.hidden{
display:none !important;
}
.visible {
display:flex !important;
}

#modal-container{
width: 800px;
max-height: 80vh;
display:flex;
flex-direction: column;
background-color:white;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#spinner{
position: absolute	;
width: 100px;
top:   30%;
left:  50%;
transform: translate(-50%, -20%);

align-items:center;
justify-content: center;
}

#modal{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
align-items: center;
justify-content: center;
z-index: 1000;
}
.modal-row {
display: flex;
justify-content: center; 
}
	
.modal-row:first-child {
       align-items: center;
		display:flex;	   
		justify-content: center; 
		flex-direction: column;
        flex: 1;
        padding: 20px;
        overflow-y: auto;
}

.modal-row:last-child {
       align-items: center;	   
       padding: 20px;
       border-top: 1px solid #eee;
       flex-shrink: 0;
}

#resultado{
	margin: 10px;
	text-align:center;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .input-container .material-icons {
    position: absolute;
    left: 20px;
    font-size: 20px; 
    color: #e76700; 
  }
  
  .input-container input {
    padding-left: 0px; 

  }

  h3{
    font-family: 'AccordAlternate', sans-serif !important;
    font-size: 1rem;
    color: #757575;
    margin: 0;
  }
  #titulo-mensaje{
   margin-bottom: 20px;
   margin-top: 60px;
  }

  .requisitos-container {
    text-align: left;
    margin-top: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 3px solid #FF670A;
    border-radius: 4px;
}

  /* Media query para dispositivos móviles */
@media (max-width: 768px) {
    #modal-container {
      padding: 20px;
        width: 90%;
        max-height: 90vh;
        margin: 20px;
    }
    
    input, select {
        width: 280px;
    }
    
    img {
        width: 15rem;
    }
}

@media (max-width: 480px) {
    #modal-container {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    input, select {
        width: 250px;
    }
    
    img {
        width: 12rem;
    }
    
    #btn-cerrar {
        width: 150px;
    }
}

.cumple-si {
    color: green !important;
    font-weight: bold;
}

.cumple-no {
    color: red !important;
    font-weight: bold;
}