/* General Page Styling */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f1f1f1;
  color: #333;
}

/* --- Homepage & Centering Container --- */
.main-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    min-height: 100vh;
    padding: 80px 20px 20px 20px; 
    box-sizing: border-box;
}

.header-content {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

.zt {
  font-weight: 700;
  color: #0a2c63;
}

/* --- Login Box / Content Box --- */
.login-box {
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    text-align: center;
}

.login-controls {
    margin-top: 15px;
}

.login-box input[type="password"],
.login-box input[type="text"] {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 180px;
}

.login-box button {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #0056b3;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.login-box button:hover {
  background-color: #004085;
}

.help-link {
    display: block;
    margin-top: 30px;
    color: #555;
    font-size: 0.9rem;
}

/* --- Document Page --- */
.documents-page {
    background-color: white;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.top-link {
    text-align: right;
    margin-bottom: 5px; /* Reduced margin to bring it closer to the account info */
    font-weight: 500;
}

.account-info {
    text-align: right;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #666;
}

.top-link a, .download-link a {
    color: #0a2c63;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s;
}

.top-link a:hover, .download-link a:hover {
    border-bottom: 1px solid #0a2c63;
}

/* --- Document Page Header --- */
.page-header {
    text-align: center;
    margin: 15px 0 25px 0; 
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-header h3 {
    margin: 0 0 5px 0; 
    font-size: 1.8rem;
    color: #222;
}

.page-header .sub-heading {
    margin: 5px 0 12px 0;
    font-size: 1rem;
    color: #555;
}

.page-header .contact-info {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

.page-header .contact-info a {
    text-decoration: none;
    color: #0056b3;
}
/* -------------------------- */

.download-link {
    margin-bottom: 2em;
}

.documents-page h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.documents-page ul {
    list-style-position: outside;
    padding-left: 2em;
}

.documents-page ul li {
    margin-bottom: 1em;
}

.description {
    margin: 0.2em 0 0 0;
    font-size: 0.9rem;
    color: #555;
}