@font-face{
  font-family: "helvetica";
  src: url("../Fonts/Helvetica.otf");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face{
  font-family: "Poppins-Black";
  src: url("../Fonts/Poppins-Black.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face{
  font-family: "Poppins-Medium";
  src: url("../Fonts/Poppins-Medium.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face{
  font-family: "Poppins-Regular";
  src: url("../Fonts/Poppins-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face{
  font-family: "Poppins-Bold";
  src: url("../Fonts/Poppins-Bold.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
*{margin: 0px;}
body{
    background-color: #031921;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; margin: 0;
}
#Logo{
  position: relative;
  width: 150px;
  margin: auto;
  display: block;
}
.login-card {
 background: white;
 padding: 35px;
 border-radius:30px;
 width: 100%;
 max-width: 380px;
 padding-bottom: 100px;
 box-shadow: 0 4px 12px rgba(0,0,0,0.1);
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(15px);
}
.login-card h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  color: #ffffff;
   }
.form-group {
 margin-bottom: 15px;
  }
.form-group label {
display: block;
margin-bottom: 5px;
color: #ffffff;
}
.form-group input {
width: 100%;
padding: 15px;
border: none;
font-size: 20px;
color: #ffffff;
border-radius: 30px;
box-sizing: border-box;
 background: rgba(255, 255, 255, 0.01);
 backdrop-filter: blur(15px);
}
.btn-submit {
margin-top: ;
width: 100%;
padding: 15px;
background-color: #00aa3b;
color: white;
border: none;
border-radius:30px;
cursor: pointer;
font-size: 16px;
}

.btn-submit:hover {
background-color: #00be2a;
}
#mensaje {
  position: relative;
  margin: 10px auto;
  width:100%;
  height: 22px;
  color: red;
  padding-top: 2px;
  text-align: center;
  font-size: 16px;
  border-radius: 33px;
  font-family: 'Poppins-Regular';
  font-weight: bolder;
  /*background: repeating-linear-gradient(
      145deg,
      #e6002b 20px,
      #e6002b 40px,
      #b10021 40px,
      #b10021 60px);
     background-size: 200% 200%;
     animation: barberpole 10s linear infinite;*/
}
@keyframes barberpole {
  100% {
    background-position: 100% 100%;
  }
}