
body {
  overflow: hidden;
}

.container-login {
  background-color: transparent;
  margin: 10% auto;
  height: 75%;
  width: 20%;
  border-radius: 50px;
  padding: 20px;
  padding-left: 150px;
  padding-right: 150px;
  border: 0.5px solid #51AB84;
  margin-top: 10vh;
}

@media only screen and (max-width: 1000px) {
  .container-login {
    display: none;
  }
}

.container-login form {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 20px;
  width: 110%;
  margin-left: -10px;
}

.container-login input {
  padding: 15px;
  border-radius: 10px;
  width: 90%;
  margin: 0 auto;
  border: 2px solid #51AB84;
  background-color: #F3F3F3;
}

.container-login a {
  color: black;
  font-weight: 900;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.logo {
  text-align: center;
}

.logo img {
  width: 30%;
  height: 100%;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.buttongreen {
  background-color: #51AB84;
  margin: 0 auto;
  padding: 20px 37px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  font-family: var(--font-title);
  border: 0.5px solid #51AB84;
  cursor: pointer;
  margin-top: 10px;
}

.buttongreen:hover {
  animation-name: pulse-animation;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}


.elipse {
  background-color: #292558;
  display: flex;
  justify-content: center;
  width: 120%;
  height: 250px;
  border-radius: 100%;
  margin-top: -100px;
  margin-left: -10%;
}
