label {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

/* --- Toast Notifications --- */
#toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  transform: translateY(-120%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 4px solid #333;
  font-size: 0.95rem;
  font-weight: 500;
}

.toast.show {
  transform: translateY(0);
}

.toast.success { border-left-color: #10B981; }
.toast.success .material-icons-round { color: #10B981; }

.toast.error { border-left-color: #EF4444; }
.toast.error .material-icons-round { color: #EF4444; }

.toast.info { border-left-color: #3B82F6; }
.toast.info .material-icons-round { color: #3B82F6; }