* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  background: #111;
  color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
}

.wrap {
  width: 100%;
  max-width: 640px;
}

.hidden {
  display: none !important;
}

.card {
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.card h3 {
  margin-bottom: 12px;
  font-weight: 600;
}

label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

input {
  width: 100%;
  padding: 8px 10px;
  margin-top: 4px;
  border-radius: 4px;
  border: 1px solid #444;
  background: #222;
  color: #eee;
}

input:focus {
  outline: none;
  border-color: #66aaff;
  background: #1a1a1a;
}

button {
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  background: #444;
  color: #eee;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #666;
}

button.link {
  background: transparent;
  color: #66aaff;
  text-decoration: underline;
  padding: 0;
}

button.link:hover {
  color: #99cfff;
}

.row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.profile {
  width: 100%;
  max-width: 120px;
  border: 2px solid #333;
  background: #222;
  object-fit: cover;
}

.muted {
  color: #888;
  font-size: 0.85rem;
}

.btn-file {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 4px;
  background: #444;
  color: #eee;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.btn-file:hover {
  background: #666;
}
