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: 15px auto;
  border: none;
  cursor: pointer;
  width: 40%;
  border-radius: 8px;
  display: block;
 opacity: 1
}


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: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 520px;
}
.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;
}