body {
  font-family: Arial, sans-serif;
  text-align: center;
}

form {
  margin: 50px auto;
  width: 300px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="submit"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

input[type="submit"] {
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.forgot-password {
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}

.container {
  display: flex;
  flex-direction: row;
}