
/*---------------------------------------*/
/* Font */
/*---------------------------------------*/


/*---------------------------------------*/
/* Register Form */
/*---------------------------------------*/
body {
  background:linear-gradient(to right, #78a7ba 0%, #385D6C 50%, #78a7ba 99%);
  overscroll-behavior-y: contain;
}

.form {
  /* width: 95%; */
  width: 700px;
  font-family: Arial, Helvetica, sans-serif;
  margin: 30px auto 5px auto;
  background:linear-gradient(to right, #ffffff 0%, #fafafa 50%, #ffffff 99%);
  border-radius: 10px;
}

/*---------------------------------------*/
/* Form Header */
/*---------------------------------------*/
.form-header  {
  background-color: #EFF0F1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.form-header h1 {
  text-align:center;
  color:#666;
  padding:10px 0 10px;
  border-bottom:1px solid #cccccc;
}

/*---------------------------------------*/
/* Form Info */
/*---------------------------------------*/
.form-info {
  padding:0px 10px 1px 10px;
  color:#666;
}

.form-group-info{
  margin-bottom:20px;
}

.label-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  padding: 5px;
}

    .form-input {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      padding: 2px;
      box-sizing: border-box;
      width: 100%;
      color:darkblue;
      border: 1px solid #d6d6d6;
      border-radius: 4px;
      background: white;
      caret-color: blue;
    }

    .row {
      margin-bottom: 1px;
    }

    .col {
      padding: 1px;
    }

    h1 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 30px;
      font-weight: bold;
      text-align: center;
      padding: 5px;
      border-bottom: 1px solid #cccccc;
      color: white;
      background-color: darkblue;
     }
     

/*---------------------------------------*/
/* Form Footer */
/*---------------------------------------*/

.form-footer  {
  background-color: #EFF0F1;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding:10px 40px;
  text-align: center;
  border-top: 1px solid #cccccc;
  clear:both;
}


.btnBuscarDoctor {
  width: 200px;
  display:inline-block;
  padding:10px 20px;
  background-color: darkblue;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  border:none;
  border-radius:5px;
  color:white;
  cursor:pointer;
}


.btnRegresar {
  width: 200px;
  height: 60px;
  display:inline-block;
   padding:10px 20px;
   background-color: red;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 30px;
   border:none;
   border-radius:5px;
   color:white;
   cursor:pointer;
}
    

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}


/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/*---------------------------------------*/
/* Spin Loader */
/*---------------------------------------*/

::-webkit-input-placeholder  {
  color:#d9d9d9;
}

#loader {
  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;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display:none;
}

#loaderBackground {
  width: 100%;
  height: 3000px;
  position: absolute;
  top:0px;
  right:0px;
  bottom:0px;
  left:0px;  
  z-index: 2;
  background: gray;
  opacity: 0.3;
 display:none;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}
