body {
  background-color: white; 
  font-family: 'Inter', sans-serif;
}

.login-box {
  background-color: #d6f6ff; 
  color: black;              
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


.btn-primary {
  background-color: #005fa3;
  border: none;
}

.btn-primary:hover {
  background-color: #004f8c;
}


header {
  background-color: #0095d9;
  color: white;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: white;
  text-transform: uppercase;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background-color: #0073a8;
  color: white;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-address p, .footer-right p {
  margin: 5px 0;
}

.footer-right {
  text-align: right;
}
