body {
  background-color: #f1f1f1;
  font-family: PalatinoLinotype;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
  border-color: #001e54;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.welcome_text_login_screen {
  text-align: left;
  font-family: PalatinoLinotype;
  font-weight: italic;
  color: #001e54;
  margin-bottom: 5px;
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 200px;
  height: auto;
}

h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

form {
  margin-bottom: 20px;
}

#dob {
  font: small;
  text-transform: uppercase;
  text-indent: 3%;
}

.forgot_creds {
  text-align: right;
  margin-top: 0px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  margin-bottom: 10px;
  box-sizing: border-box;
  font-family: PalatinoLinotype;
  font-size: 0.95vw;
}

input[type="submit"] {
  width: 50%;
  padding: 10px;
  border-radius: 9px;
  border: 1px solid #ccc;
  background-color: #001e54;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  font-weight: bold;
}

input[type="submit"]:hover {
  background-color: #0d91dd;
}

input[type="date"]::before {
  content: "DOB";
  display: flex;
  align-items: center;
  color: #696969;
  pointer-events: none;
}

/* Style the selected date in Chrome */
input[type="date"]::-webkit-datetime-edit {
  color: #333;
  display: flex;
  align-items: center;
}

/* Adjust position of the selected date in Chrome */
input[type="date"]::-webkit-datetime-edit::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid #333;
  pointer-events: none;
}

input[type="date"]:not(#dob)::-webkit-input-placeholder {
  color: transparent;
}



input[type="text"],
input[type="date"] {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  margin-bottom: 15px; /* Adjusted spacing between fields */
  box-sizing: border-box;
}

p {
  text-align: center;
}

a {
  color: #1c5a81;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background-color: #fff;
  padding: 20px;
  margin-top: auto;
}

.footer-content {
  /* Add your styles for the footer content here */
}

/* Responsive Design */

@media only screen and (orientation: portrait) {
  .container {
    zoom: 220%;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: auto;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 35px;
    border-color: #001e54;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
}