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

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top left, #3bc4d4, #78f17b);
  color: #acacac;
}

h1 {
  margin-top: 10px;
  color: #3bc4d4;
  font-size: 50px;
  font-weight: 100;
}

.container {
  width: 480px;
  height: 630px;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 5px 30px 10px rgba(68, 68, 68, 0.4);
}

/* Form */
form {
  width: 90%;
}

.form-group {
  margin-top: 10px;
  height: 66px;
}

label {
  position: relative;
  bottom: 8px;
}

input {
  width: 100%;
  height: 34px;
  padding: 15px;
  border: 2px solid black;
  border-radius: 5px;
  outline: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
  color: #7c7c7c;
}

input:valid {
  border: 2.5px solid rgb(120, 241, 123);
}

input:invalid {
  border: 1px solid rgb(116, 116, 116);
}

button {
  cursor: pointer;
  color: white;
  background-image: linear-gradient(to top left, #3bc4d4, #78f17b);
  border: none;
  border-radius: 5px;
  height: 50px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-top: 15px;
}

button:hover {
  filter: brightness(110%);
}

button:focus {
  outline: none;
}

.message-container {
  width: 90%;
  display: flex;
  justify-content: center;
}
