/* CSS Document */
/* ================================
   Utility Disclosure App - Base UI
   ================================ */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: #f5f7fa;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
a {
  color: #0b5ed7;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1 {
  font-size: 26px;
  margin-bottom: 15px;
  margin-top: 0;
  color: #1a1a1a;
}
h2 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 0;
  color: #1a1a1a;
}
h3 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 15px;
  color: #386BB1;
}
/* Layout container */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
/* Forms */
form label {
  font-weight: 500;
  display: block;
  margin-top: 10px;
}
form input {
    font-weight: 500;
    display: block;
    margin-top: 10px;
    padding: 10px;
    border: 2px solid #cfd4dc;
    border-radius: 8px;
    font-size: 16px;
    width: 95%;
    max-width: 585px!important;
}
input[type="text"],
input[type="email"],
select {
  width: 95%;
  max-width: 600px;  
  padding: 10px;
  border: 2px solid #cfd4dc;
  border-radius: 8px;
  font-size: 16px;
}
input::placeholder {
  color: #888;
}
button {
  margin-top: 20px;
  background: #0b5ed7;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background: #094bb5;
}
button.secondary {
  background: #6c757d;
}
button.secondary:hover {
  background: #565e64;
}
/* Dashboard list */
ul {
  padding-left: 18px;
}
li {
  margin-bottom: 6px;
}
/* Utility sections */
.utility-group {
  padding: 10px 0;
  border-bottom: 1px solid #e6e9ef;
}
.utility-group:last-child {
  border-bottom: none;
}
/* Alerts / messages */
.notice {
  padding: 10px;
  margin-top: 15px;
  border-radius: 4px;
  background: #e7f1ff;
  color: #084298;
}
.error {
  background: #f8d7da;
  color: #842029;
}
/* Footer disclaimer */
.disclaimer {
  font-size: 12px;
  color: #555;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}
/* Small screens */
@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 20px;
  }
}
