/* Bordered form */
form {
  border: 3px solid #f1f1f1;
}

body {

  /*background-image: url(img/fondoP.png);*/

  }
/* Full-width inputs */
label{
  font-family:arial;
}
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
   border-radius: 8px;
   font-family: arial; 
}


/* Set a style for all buttons */
button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
   border-radius: 8px;
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
  border-radius: 8%;
}

/* Center the avatar image inside this container */
.imgcontainer {
  text-align: center;
  margin: 24px 0 0px 0;
}

/* Avatar image */
img.avatar {
  width: 30%;
  border-radius: 50%;
}

/* Add padding to containers */
.container {
  padding: 20px;
  border-radius: 8px;
}

/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 16px;
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden 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: 10px;

}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5px auto; /* 15% from the top and centered */
  border: 1px solid #888;
  border-radius: 8px;
  width: 40%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  /* Position it in the top right corner outside of the modal */
  position: absolute;
  right: 35px;
  top: 35;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 1.6s;
  animation: animatezoom 0.8s
}

/* Add Zoom Animation */
.desanimate {
  -webkit-animation: desanimatezoom 1.6s;
  animation: desanimatezoom 0.8s
}


.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/*---------------------desvanecer------------------------------*/

@-webkit-keyframes desanimatezoom {
  from {-webkit-transform: scale(1)}
  to {-webkit-transform: scale(0)}
}

@keyframes desanimatezoom {
  from {transform: scale(1)}
  to {transform: scale(0)}
}




@media screen and (max-width: 800px) {
/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15px auto; /* 15% from the top and centered */
  border: 1px solid #888;
  border-radius: 8px;
  width: 90%; /* Could be more or less, depending on screen size */

}
 
.close {
  /* Position it in the top right corner outside of the modal */
  position: absolute;
  right: 20px;
  top: 20;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}


};