
/*
FRE SOLUCIONES
v20.02.10

*/
html{
    
}
body {
    font-family: "Open Sans", sans-serif;
    height: 100vh;
     
    margin:0px;
    background-image: url("imgs/logonunez_grey.png");
    background-position: center; background-repeat: no-repeat;background-size: contain;
}
.main-title{ 
-ms-box-orient: horizontal;
flex-shrink: 0; display: flex; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -moz-flex; display: -webkit-flex;
flex-flow: row wrap;
}
.main-title-color{ 
    background: #3e774f; color: #FFF;
}
 
.title{
    padding: 10px 15px;
    background: #305e3d; color: #FFF; 
}
a{
    text-decoration: none; color: #fff;
}
.back{
    padding: 10px 15px; border-right:1px solid #305e3d;
}.back:hover{
    background: #457c55;

}

.main-content{
    /*min-height: 90vh; display: flex; align-items: center; justify-content: center; */
}
.form-basic{
    max-width: 640px;
    margin: 10px auto;
    
    padding-top: 55px;
    box-sizing: border-box;

    background-color:  #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);

    font: bold 14px sans-serif;
    text-align: center;
}
.form-basic .form-row{
     margin-bottom: 20px;
}
.form-basic .form-title-row{
    text-align: center;
    margin-bottom: 45px;
}

/* The form title */

.form-basic h1{
    display: inline-block;
    box-sizing: border-box;
    color:  #4c565e;
    font-size: 18px;
    padding: 0 10px 15px;
    border-bottom: 2px solid #6caee0;
    margin: 0; text-transform: capitalize;
}
hr{ width: 400px; color:#6caee0}

.form-basic .form-row > label span{
    display: inline-block;
    box-sizing: border-box;
    color: #5F5F5F;
    width: 220px;
    text-align: right;
    vertical-align: top;
    padding: 12px 25px 12px 0px;
}

.form-basic input{
    color:  #5f5f5f;
    box-sizing: border-box;
    width: 200px;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 10px;
    border: 1px solid #dbdbdb;
    font-size: 1.2em;border-radius: 4px;
}
.form-basic input:focus{
    border: 1px solid #4c8df0;
    box-shadow: 1px 2px 4px 0 rgba(97, 152, 204, 0.08);
}

.form-basic select{
    background-color: #ffffff; color:  #5f5f5f;
    box-sizing: border-box; font-size: 1.0em;
    width: 200px;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 12px 8px;
    border: 1px solid #dbdbdb;border-radius: 4px;
}
 
.form-basic button{
    border-radius: 2px;
    font-weight: bold;
    padding: 10px 32px;
    border: 1px solid #fff;
    border-radius: 4px; margin: 2px 10px;
}
.form-basic button:hover{
    border: 1px solid #807f7f;
 }
 .form-pie{
    margin-top: 50px;
    background-color: #ebebeb; color:  #a1a1a1;
    padding:4px;
 }
 
/*	Making the form responsive. Remove this media query
    if you don't need the form to work on mobile devices. */

@media (max-width: 600px) {

    .form-basic{ padding-top: 30px;max-width: 480px;}
    hr{ max-width: 300px; }

    .form-basic .form-row{
        max-width: 300px;
        margin: 25px auto;
        text-align: left;
    }
    .form-basic .form-title-row{ margin-bottom: 50px; }

    .form-basic .form-row > label span{
        display: block;
        text-align: left;
        padding: 0 0 15px;
    }

    .form-basic select{width: 200px;  }
    .form-basic input[type=checkbox]{ margin-top:0;  }
    .form-basic button{ margin: 0; }
}



/*
*/
/* Center the loader */
.fsModalLight {
    display:none;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.25); /* Black w/ opacity */
}
.fsLoader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
