* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 14px;
}

body {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

form {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

h1 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 8px;
}

input {
  width: 100%;
  height: 32px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: rgba(249, 249, 249, 0.8);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

input:focus {
  border-color: #0088ff;
  background-color: #ffffff;
}

.btn-submit {
  width: 100%;
  height: 34px;
  padding: 8px;
  background-color: #0088ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color: #0074e0;
}

a {
  color: #0085ff;
  text-decoration: none;
  font-weight: 500;
}
