.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 550px;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  background-color: #e7e8e3;
  color: #fff;
  border: 0.5px solid #4d6995;
  width: 100%;
}
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title {
  font-size: 28px;
  font-weight: 600;
  /* letter-spacing: -1px; */
  position: relative;
  /* display: flex; */
  align-items: center;
  /* padding-left: 30px; */
  color: #85c241;
}
/* .content i{
  margin-right:50px;
  display:flex;
  align-items: start;
  position:relative;
} */
.card-just-text {
  position: relative;
  padding: 10px;
}

.pin-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 29px;
  transform: translateY(-50%) rotate(316deg);
}

.title {
  text-align: center;
}

.important {
  color: red;
}
/* .title::before {
  width: 18px;
  height: 18px;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #6bd136;
} */

.message,
.signin {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

.signin {
  text-align: center;
}

.signin a:hover {
  text-decoration: underline royalblue;
}

.signin a {
  color: #6bd136;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
  width: 100%;
}

.form label .input {
  background-color: #fff;
  color: #333;
  width: 100%;
  padding: 20px 05px 05px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  color: #4d6995;
  position: absolute;
  left: 10px;
  top: 0px;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 12.5px;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  color: #6bd136;
  top: 0px;
  font-size: 0.7em;
  font-weight: 600;
}

.input {
  font-size: medium;
}

.submit {
  /* width: 100px; */
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transform: 0.3s ease;
  background-color: #6bd136;
}

.submit:hover {
  background-color: #6bd13696;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media screen and (min-width: 300px) and (max-width: 500px) {
  .flex {
    flex-direction: column;
    gap: 5;
  }
}
.image-container {
  overflow: hidden;
}

.image-container img {
  transition: transform 0.6s ease;
}

.image-container:hover img {
  transform: scale(1.2);
}


