html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  position: relative;
}

.buttons-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

button {
 /* background: #003aa2;
  color: white;
  padding: 16px 25px;
  margin-top: 15px;
  border: none;
  cursor: pointer;
  width: 40%;
  border-radius: 8px;
  display: block;
  opacity: .6;*/
}


body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}


/* The popup form - hidden by default */
.form-popup {
  display: none;
  z-index: 9;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 400px;
}
.a {
  font-size: 15px;
  color:black;
  font-weight: bold;
}
/* Add styles to the form container */
.form-container {
  
  padding: 10px;
  background-color: white;
  border-radius: 13px;
  border: 1px solid #05235F;
  
}

/* Full-width input fields */
.form-container input[type=text],.form-container input[type=password] {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background: #f5f7f7;
 
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: 1;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #F3F8F9;
  color: #0A45E5;
  margin-left:auto;
  padding: 5px 10px;
  cursor: pointer;
  width: 45%;
  margin-bottom:3px;
  margin-top:3px;
  opacity: 0.8;
  border: 1px solid #A9A9A9;
  
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: white;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.spinner {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 100px auto;
 /* background-size: 100px 100px;
 background-image: url("imap.png");
 */
}

.double-bounce1, .double-bounce2 {
   width: 14%;
   height: 14%;
   border-radius: 50%;
   background-color: #027bfe;
   opacity: 1.6;
   position: absolute;
   top: 117px;
   left: 54px;  
  -webkit-animation: bounce 1.5s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}
.double-bounce3 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: blue;
  opacity: 0.5;
  position: absolute;
 
}
.double-bounce2 {
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
}

@-webkit-keyframes bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}