* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}

form {
  max-width: 450px;
  width: 100%;
  height: 600px;
  margin-top: 20vh;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h3 {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 50px;
}

input {
  all: unset;
  width: 100%;
  padding: 10px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

input::placeholder {
  color: #aaa;
}

.error_message {
  font-size: 14px;
  color: crimson;
  margin-bottom: 10px;
  font-weight: 900;
}

button {
  all: unset;
  width: 100%;
  height: 45px;
  font-size: 16px;
  background-color: khaki;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.7);
}

.seper_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 20px;
}

.seper {
  width: 42%;
  height: 1px;
  background-color: #dbdbdb;
}

.or {
  font-weight: 900;
  color: #808080;
}
