* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #2b1d13, #8b5a2b);
  min-height: 100vh;
  color: #2b1d13;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 430px;
  background: #fffaf3;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.brand {
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #2b1d13;
  color: #f5d38c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1px;
}

h1 {
  margin: 0 0 8px;
  font-size: 25px;
}

p {
  margin: 0;
  color: #6e5948;
  line-height: 1.45;
}

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

label {
  font-weight: bold;
  font-size: 14px;
  margin-top: 8px;
}

input {
  width: 100%;
  padding: 14px;
  border: 1px solid #d8c5ad;
  border-radius: 14px;
  font-size: 16px;
  outline: none;
  background: white;
}

input:focus {
  border-color: #8b5a2b;
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.14);
}

button {
  margin-top: 18px;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: #2b1d13;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.footer-text {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
}
