* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  background: #f6f8fa;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #24292f;
}

.auth {
  width: 400px;
  text-align: center;
}

.logo {
  width: 180px;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.card {
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 24px;
  text-align: left;
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-row a {
  font-size: 12px;
  text-decoration: none;
  color: #0969da;
}

input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid #d0d7de;
  font-size: 14px;
}

input:focus {
  outline: none;
  border-color: #0969da;
  box-shadow: 0 0 0 3px rgba(9,105,218,0.15);
}

button {
  width: 100%;
  height: 40px;
  background: #E78324;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #C66306;
}