/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #FBFBFB;
  color: #333;
  line-height: 1.6;
}

/* === Navbar (Admin Page) === */
.navbar {
  background-color: #ECD2D1;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar h2 {
  color: #333;
  font-weight: 700;
}

/* === Login Box === */
.login-box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  margin: 100px auto;
  box-shadow: 0px 7px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 1.5rem;
  color: #DDADAD;
  font-size: 1.8rem;
}

.login-box form {
  display: flex;
  flex-direction: column;
}

/* === Forms (Login + Admin Upload) === */
label {
  font-weight: 600;
  margin: 10px 0 5px;
  display: inline-block;
  text-align: left;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #DDD;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #DDADAD;
  box-shadow: 0 0 5px rgba(221, 173, 173, 0.4);
}

/* === Buttons === */
button {
  background-color: #DDADAD;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

button:hover {
  background-color: #C7C0B6;
}