html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f7f8;
  font-family: "Inter", sans-serif;
}

.login-card {
  border: 1px solid #e3e3e3;
  color: gray;
  background-color: white;
  width: 400px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-title {
  text-align: center;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  border: 1px solid #e3e3e3;
  border-radius: 9999px;
  padding: 10px 15px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #e3e3e3;
  box-shadow: none;
  outline: none;
}

.login-button {
  background-color: #f28b82;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 9999px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #e06666;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: gray;
}

.form-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.forgot-password {
  color: inherit;
}

.signup-prompt {
  margin-top: 20px;
  font-size: 14px;
  color: gray;
  text-align: center;
}

.signup-prompt a {
  color: #f28b82; /* светло-красный цвет, как кнопка */
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.signup-prompt a:hover {
  text-decoration: underline;
}
