body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 430px;
  margin: auto;
  background: white;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.brand-logo {
  width: 55px;
  height: 55px;
}

.brand-title {
  font-size: 1.4rem;
  margin: 0;
}

label {
  margin-top: 10px;
  display: block;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 16px;
}

textarea {
  height: 70px;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: #1a73e8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

button.secondary {
  background: #444;
}

button:hover {
  opacity: 0.9;
}

/* Password Eye */
.password-wrapper {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 12px;
  top: 11px;
  cursor: pointer;
}

/* Error borders */
input.error {
  border: 2px solid #d40000;
}

/* QR Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.2s ease;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  animation: popIn 0.25s ease;
}

.close-btn {
  float: right;
  cursor: pointer;
  font-size: 24px;
}

@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}

@keyframes popIn {
  from {transform: scale(0.8); opacity: 0;} 
  to {transform: scale(1); opacity: 1;}
}

/* Footer */
footer {
  margin-top: 20px;
  text-align: center;
  padding: 15px;
  background: #000;
  color: white;
}

footer a {
  color: #4da3ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
