@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  height: 100vh;
  background: #EBF3FB;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form {
  position: relative;
  background: #fff;
  width: 300px;
  padding: 20px 30px;
  height: 450px;
  border-radius: 12px;
}

.form h1 {
  font-size: 35px;
  margin-bottom: 50px;
}

.form .form-control {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.form input {
  width: 100%;
  padding: 10px 5px;
  border: 1px solid #9D9DC4;
  border-radius: 3px;
}

.form input:focus {
  outline: none;
  border: 1px solid #4A4AE4;
}

.form button {
  margin: auto auto;
  display: block;
  border: none;
  outline: 0;
  background: #4A4AE4;
  font-family: inherit;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 20px;
  cursor: pointer;
  transition: .2s transform;
}

.form button:active {
  transform: scale(0.89);
}

.form .signup-link {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
}

.form .signup-link p {
  margin-bottom: 2px;
}

