@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

::selection {
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background-image: url(../img/dave.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  backdrop-filter: blur(30px);
  border-radius: 20px;
  border: 1px solid #3c5d45e0;
  width: 400px;
}

h2 {
  color: #6a8f74;
  text-align: center;
  margin: 0 0 20px;
}

.form {
  padding: 30px 40px;
}

.form-control {
  margin-bottom: 10px;
  padding-bottom: 20px;
  position: relative;
}

.form-control label {
  color: #6a8f74;
  display: block;
  margin-bottom: 5px;
}

.form-control input {
  background: hsla(93, 22%, 76%, 0);
  border: 1px solid #33513a;
  color: #aac59a;
  border-radius: 4px;
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

.form-control input:focus {
  outline: 0;
  border: 1.5px solid #aac59a;
}


.form-control small {
  color: red;
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.form-control.error small {
  visibility: visible;
}

.form button {
  cursor: pointer;
  background: linear-gradient(135deg, #284430 10%, #5c6b52 100%);
  border: none;
  border-radius: 4px;
  color: #fff8de;
  display: block;
  font-size: 16px;
  padding: 10px;
  margin-top: 20px;
  width: 100%;
}

small {
  color: #6a8f74;
}

a {
  text-decoration: none;
  color: #fff8ded7;
}