body {
  margin: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #d3d3d3, #001f3f);
  background-repeat: no-repeat; /* Just in case */
  background-attachment: fixed;
}

.container {
  text-align: center;
}

.header {
  padding: 20px 0;
}

.header-image {
  background-image: url('../images/icenter.png'); /* Replace with your image */
  background-repeat: no-repeat;
  background-position: center;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;

}

.header-image h1 {
  margin: 0;
  line-height: 0.9;
    font-size: 3.5em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background: #00000055;
}

.content-box {
  background-color: white;
  margin: 30px auto;
  width: 90%;
  max-width: 900px;
  padding: 40px;
  box-shadow: 5px 5px 0px black;
  min-height: 400px;
  border-radius: 20px;
}

table, th, td {
  border: solid #d3d3d3;
}

table {
  border-collapse: collapse;
  width: 80%;
  margin: 30px auto;
  font-size: 1rem;
}

th {
  background-color: #001f3f;
  color: white;
  padding: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
td {
  padding: 12px;
}

form {
  width: 60%;
  max-width: 500px;
  margin: 40px auto;
  padding: 40px;
  background-color: #d2d4dc;
  border-radius: 15px;
  box-shadow: 3px 3px 8px #d2d4dc;
}

.form-group{
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  text-align: left;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"] {
  margin-top: 3px;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

#Submit{
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #001f3f;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

#Submit:hover {
  background-color: #546A7B;
}

a {
  text-decoration: none;
  color: #001f3f;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #003366;
}