:root{
    --cTituloN1: #E5BF00;
    --cTituloN2: #fff;
    --cTituloN3: #0059FF;
    --cTituloN4: #FFB54F;
    --cTituloN5: #FFC984;
    
    --cTituloV1: #115EA4;
    --cTituloV2: #177BD3;
    --cTituloV3: #3AA3FF;
    --cTituloV4: #70BCFF;
    --cTituloV5: #A3D4FF;
    
    --cDisabled: #E5E5E5;
    
    --cFondo: #D3ECE9;
}


body{ 
    background: url(fondo.jpg) center fixed;
}
.background{
    width: 430px;
    height: 420px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}
.shape{
    height: 180px;
    width: 180px;
    position: absolute;
    background-image: url("../img/icon.png");
    background-repeat: no-repeat, repeat;  
    background-size: cover;
    left: -10px;
    top: -150px;
    
}

.form{
    height: 450px;
    width:300px;
   background-color: rgba(0,0,0,0.5);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 10px 35px;
    
}
.form *{
    letter-spacing: 0.5px;
    outline: none;
}
.form h3{
    font-size: 30px;
    font-weight: 800px;
    
    
    color: var(--cTituloN2);
}
a{
    text-decoration:none;
    color:white;
}

label{
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--cTituloN2);
}
input{
    display: block;
    height: 50px;
    width: 100%;
    color:white;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}
input:focus{
    border: 1px solid var(--cTituloV3);
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.icon {
    float: right;
    margin-right: -10px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
    color: var(--cTituloV5);
}
::placeholder{
    font-family: FontAwesome;
    color: var(--cTituloV5);
}

.submit{
    display: block;
    margin-top: 10px;
    color: white;
    width: 100%;
    background: var(--cTituloV1);
    color: #fffff;
    padding: 15px 0px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    border:none;
}
.submit:hover {	background: var(--cTituloN3);}
.submit:disabled{	
    background: var(--cDisabled);
    cursor: not-allowed;
    color: var(--cTituloV5);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}
.submit2 {
  width: 25px;
  height: 25px;
  display: block;
  margin: 0px 10px auto ;
  background: var(--cTituloV1);
  color: #fffff;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  
}
.submit2:hover{
  background: var(--cTituloN3);
  color: #fff;
}


.sModal{
    display: none;  
    position: fixed;
    z-index:1050;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.sModal-Body{
  background-color: #ffffff;
  width:40%; /* Could be more or less, depending on screen size */
  min-width: 350px;
  min-height:150px;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  /*-webkit-transform: translate(-50%, -50%);*/
  transform: translate(-50%, -50%);
  opacity:0;
  box-shadow: 0px 0px 50px 0px var(--cTituloV5);
 }
.sModal-Titulo{
  background-color: var(--cTituloV3);
  color: white;
  width: 100%;
  height: 40px;
  border-radius: 5px 5px 0px 0px;
}
.sModal-Titulo th{font-size: 18px;}
.sModal-Cerrar{
  	outline: none;
	height: 30px;
	width: 100px;
	border-radius: 4px;
	background: var(--cTituloV3);
	color: white;
	border: none;
	cursor: pointer;	
}
.sModal-Cerrar:hover {
    color: var(--cTituloN3);
    text-decoration: none;
    cursor: pointer;
}
.sModal-Button{
    bottom: 5px;
    width:100%;
    margin:5px;
}
.sModal-Button button{
	outline: none;
	height: 35px;
	width: 100px;
	border-radius: 4px;
	background: var(--cTituloV1);
	color: white;
	font-size: 15px;
	border: none;
	cursor: pointer;
    margin-right: 20px;
    margin-left: 20px;
    padding:5px;
}
.sModal-Button button:hover {
    background: var(--cTituloN3);
}



.sModal-Load{
  background-color: #ffffff;
  border: 1px solid #888;
  width: 10%; 
  min-width:350px;
  height:122px;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: 1;

}