* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

input {
  display: block;
  direction: rtl;
  border: none;
  outline: none;
}

input::placeholder {
  font-size: 17px;
}

input[type="text"] {
  padding: 10px;
  width: 250px;
  margin-bottom: 8px;
  border: 2px solid rgb(195, 192, 196);
}

input[type="password"] {
  padding: 10px;
  width: 250px;
  margin-bottom: 8px;
  border: 2px solid rgb(195, 192, 196);
}

input[type="submit"] {
  padding: 10px;
  width: 250px;
  font-size: 16px;
  background-color: rgb(107, 107, 228);
  color: #f5e6e6;
  border: 2px solid rgb(195, 192, 196);
  margin-top: 5px;
}

input[type="checkbox"] {
  float: right;
}

label {
  margin-left: 130px;
}
