@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

/* Get rid of all default margins/paddings. Set typeface */
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: "lato", sans-serif;
}
/* Puts the form in the center both horizontally and vertically. Sets its height to 100% of the viewport's height */

.signupFrm {
  padding: 40px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}
.form {
  background-color: white;
  width: 400px;
  border-radius: 8px;
  padding: 20px 40px;
  box-shadow: 0 10px 25px rgba(92, 99, 105, .2);
}

.title {
  text-align: center;
  color:#ff0000;
  font-size: 20px;
  margin-bottom: 20px;
}
.inputContainer {
  position: relative;
  height: 45px;
  width: 90%;
  margin-bottom: 17px;
}
/* Style the inputs */

.input {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border: 1px solid #DADCE0;
  border-radius: 7px;
  font-size: 16px;
  padding: 0 20px;
  outline: none;
  background: none;
  z-index: 1;
}

/* Hide the placeholder texts (a) */

::placeholder {
  color: transparent;
}
/* Styling text labels */

.label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0 4px;
  background-color: white;
  color: #DADCE0;
  font-size: 16px;
  transition: 0.5s;
  z-index: 0;
}
.submitBtn {
  display: block;
  margin-left: auto;
  padding: 15px 30px;
  border: none;
  background-color: purple;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 30px;
}

.submitBtn:hover {
  background-color: #9867C5;
  transform: translateY(-2px);
}
.input:focus + .label {
  top: -7px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: purple;
}
.input:focus {
  border: 2px solid purple;
}
.input:not(:placeholder-shown)+ .label {
  top: -7px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
}
table {
   border-bottom: 4px solid rgb(187, 12, 12);
   border-color: #ff1e1e;
   background-color: #424242;
}
.span-error{
  color: #DBDBDB;
}
#Notificacion{
  display: none;
}
.success-noty,
.error-noty{
  top: 20px;
  right: 20px;
  position: fixed;
  width: 310px;
  height: auto; 
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  z-index: 10000000;
}
.error-noty li{
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgb(186, 12, 12);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px;
  color: rgb(255, 255, 255);
  opacity: 1;
  width: 310px;
  cursor: pointer;
  background: rgb(186, 12, 12); 
}
.success-noty li{
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgb(149, 183, 93);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px;
  color: rgb(255, 255, 255);
  opacity: 1;
  width: 310px;
  cursor: pointer;
  background: rgb(149, 183, 93);
}
.info_noty{
  font-size: 11px;
  line-height: 14px;
  text-align: left;
  padding: 8px 10px 9px;
  width: auto;
  position: relative;
}
