/* GLOBAL PAGE STYLE */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #eef3f8;
  margin: 0;
  padding: 40px;
  display: flex;
  justify-content: center;
}

/* MAIN WRAPPER */
.page-wrapper {
  background: #ffffff;
  padding: 30px 40px 40px;
  border-radius: 14px;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 1px solid #dce3eb;
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 25px;
}

.header img {
  width: 80px;
  height: auto;
  margin-bottom: 8px;
}

.header h1 {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.header p {
  font-size: 14px;
  color: #4a5b6b;
  margin-top: 4px;
}

/* NAVIGATION */
.nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #cfd8e3;
  color: #34495e;
  font-size: 14px;
  background: #f7f9fc;
}

.nav a:hover {
  background: #e3ecf8;
}

/* SECTION TITLES */
.section-title {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  border-bottom: 2px solid #e0e6ed;
  padding-bottom: 6px;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* LABELS + INPUTS */
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #34495e;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7b8a97;
}

input, select, textarea {
  width: 100%;
  padding: 12px 12px 12px 38px;
  margin-bottom: 18px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  font-size: 15px;
  background: #f9fbfd;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #4a90e2;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(74,144,226,0.2);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* BUTTONS */
button {
  padding: 12px 18px;
  background: #4a90e2;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background: #3b7ac2;
}

button.full-width {
  width: 100%;
  margin-top: 10px;
}

/* SUCCESS MESSAGE */
.success-message {
  background: #e8f7e4;
  border: 1px solid #b6e2b0;
  padding: 15px;
  border-radius: 8px;
  color: #2e7d32;
  margin-bottom: 20px;
  font-weight: 600;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 14px;
}

th, td {
  border: 1px solid #dce3eb;
  padding: 8px;
  text-align: left;
}

th {
  background: #f4f7fb;
  font-weight: 600;
}

/* FOOTER */
.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #6b7b8c;
}
