* {
  box-sizing: border-box;
}

body {font-family: Arial, Helvetica, sans-serif;}

.center {
text-align: center;
}

/* Full-width input fields */
input[type=text], input[type=password], input[type=email], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
.button {
  background-color: #125688;
  color: white;
  font-size: 18px;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  display: block;
  text-decoration: none;
  text-align: center;
  transition: .5s ease;
}

.button:hover {
  opacity: 0.7;
}

/* Extra styles for the cancel button */
.register {
  width: auto;
  padding: 10px 18px;
  outline: 2px solid #125688;
  text-decoration: none;
  color: #125688;
  transition: .5s ease;  
}

.register:hover {
  background: #125688;
  color: white;
}

.container {
  padding: 16px;
}

.small-container {
  padding: 40px 16px;
  background-color: #f1f1f1;
}

span.psw {
  float: right;

}

/* The Modal (background) */
.modal {
  display: block; /* Visible by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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.4); /* Black w/ opacity */
  /*padding-top: 60px;*/
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.forgot {
  color: #04AA6D;
}

.forgot:hover {
  opacity: 0.7;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 414px) {
  span.psw {
     display: block;
     float: none;
     margin-top: 10px;
  }
  .register {
     width: 100%;
     display: block;
     text-align: center; 
  }
}

.alert-yes{
  width: 100%;
  background: #DFF0D8;
  padding: 20px;
  margin: 16px auto;
  color: #497F49;
  border-radius: 3px;
}

.alert-no{
  width: 100%;
  background: #F2DEDE;
  padding: 20px;
  margin: 16px auto;
  color: #A94442;
  border-radius: 3px;
}

@media screen and (min-width: 601px) {
  .h2-resp {
    font-size: 22px;
  }
}

@media screen and (max-width: 600px) {
  .h2-resp {
    font-size: 12px;
  }
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/*.register-bg{
  background-color: rgba(0,0,0,0.4);
}*/