
/* Body */
body {
  font-family: "Inter", Arial, sans-serif;
  background: #2c2c2c;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Form */
form {
  width: 100%;
  max-width: 480px;
  margin: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #272727;
  border-radius: 12px;
}

/* Form Labels */
label {
  font-size: 15px;
  font-weight: 600;
}

/* Inputs */
input, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: #1d1d1d;
  border: 2px solid #444;
  color: #fff;
  transition: 0.25s;
}
textarea {
  min-height: 100px;
}
input:focus, textarea:focus {
  border-color: #ff8800;
  box-shadow: 0 0 0 3px rgba(255,136,0,0.3);
  outline: none;
}

/* Buttons */
button, #popup button {
  background: #ff6a00;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  margin: 10px auto;
}

button:hover {
  background: #ff8b1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#logoutBtn {
background: #ff6b6b;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#logoutBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

#logoutBtn:active {
  transform: scale(0.96);
}
