/* styles.css */
body {
  --primary: #045274;
  --secondary: #ffffff;
  --accent: #b62124;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--secondary);
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  position: relative;
}
.background-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(4, 82, 116, 0.5);
  z-index: 0;
}
header, footer {
  background-image: url('d7aed557-8cee-4563-bde7-2dff1f80bc80.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}
nav {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.logo {
  height: 100px;
}
.left-logo {
  height: 50px;
  margin-right: auto;
}
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--secondary);
  font-weight: 300;
  position: relative;
  z-index: 2;
}
nav a:hover {
  color: var(--accent);
}
main {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
}
.content-box {
  background-color: rgba(0,0,0,0.5);
  border: 2px solid var(--accent);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  font-weight: 300;
  color: white;
}
.content-box table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: rgba(0,0,0,0.6);
}
.content-box th, .content-box td {
  border: 1px solid #555;
  padding: 10px;
  text-align: left;
}
.content-box th {
  background-color: rgba(255,255,255,0.1);
}
.photo-upload {
  text-align: center;
  margin-bottom: 20px;
}
.photo-upload input {
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #1a1a1a;
}
.login-container {
  background-color: rgb(167, 199, 231);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  text-align: center;
  color: white;
}
.login-container input {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}
.login-container button {
  padding: 10px 20px;
  background-color: var(--accent);
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.login-container button:hover {
  background-color: #8b1e1f;
}
.home-tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.home-buttons button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: var(--accent);
  color: white;
  cursor: pointer;
  font-weight: 500;
}
.home-frame {
  border: 4px solid var(--secondary);
  padding: 5px;
  margin: 10px;
  display: inline-block;
  border-radius: 10px;
}

/* home.html */