body {
  background-color: rgb(235, 232, 232);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  background-color: white;
  max-width: 900px;
  min-width: 70%;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
}

.container {
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logoLink {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.logo {
  width: 200px;
  height: auto;
  border: 1px solid black;
  border-radius: 25px;
  box-shadow: 3px 5px 10px rgb(133, 132, 132);
}

.loginForm {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #499059;
  margin-bottom: 10px;
  font-size: 28px;
}

.hint {
  margin-bottom: 25px;
  color: #444;
  font-size: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  text-align: left;
  font-weight: 600;
  color: #232323;
}

input[type="text"],
input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.optionsRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #232323;
}

.signUp {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-size: 13px;
}

.signUp p {
  margin: 0;
  color: #444;
}

.signUpLink {
  color: #3394d8;
  text-decoration: none;
  font-weight: 600;
}

.signUpLink:hover {
  text-decoration: underline;
}

input[type="submit"] {
  background-color: #3394d8;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

input[type="submit"]:hover {
  background-color: #266b99;
}
