* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.container {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
  max-width: 31.25rem;
  width: 100%;
  padding: 2.5rem;
}

h1 {
  color: #333;
  margin-bottom: 0.625rem;
  font-size: 1.75rem;
  text-align: center;
}

.subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 1.875rem;
  font-size: 0.875rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
  font-size: 0.875rem;
}

input[type="email"],
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  border: 0.125rem solid #e0e0e0;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: #fa4517;
}

.checkbox-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.checkbox-option label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

button {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #ff8040 0%, #fa4517 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.3125rem 1.25rem rgba(102, 126, 234, 0.4);
}

button:active {
  transform: translateY(0);
}

.btn-danger {
  background: #dc3545;
  color: white;
}

.btn-danger:hover {
  box-shadow: 0 0.3125rem 1.25rem rgba(220, 53, 69, 0.4);
}

.message {
  padding: 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.success {
  background: #d4edda;
  color: #155724;
  border: 0.0625rem solid #c3e6cb;
}

.error {
  background: #f8d7da;
  color: #721c24;
  border: 0.0625rem solid #f5c6cb;
}

.icon {
  margin-bottom: 1.25rem;
  text-align: center;
  & img {
    max-height: 7rem;
    width: auto;
  }
}

.readonly-field {
  background: #f5f5f5;
  padding: 0.75rem;
  border-radius: 0.375rem;
  color: #333;
  border: 0.125rem solid #e0e0e0;
}

.status-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.status-inactive {
  background: #f8d7da;
  color: #721c24;
}

.divider {
  border: 0;
  height: 0.0625rem;
  background: #e0e0e0;
  margin: 1.875rem 0;
}

.danger-zone {
  background: #fff3cd;
  padding: 1.25rem;
  border-radius: 0.375rem;
  border-left: 0.25rem solid #ffc107;
}

.danger-zone h3 {
  color: #856404;
  margin-bottom: 0.625rem;
  font-size: 1rem;
}

.danger-zone p {
  color: #856404;
  font-size: 0.875rem;
  margin-bottom: 0.9375rem;
}

.text-small {
  color: #666;
  font-size: 0.75rem;
  margin-top: 0.3125rem;
  display: block;
}
