:root{
  --flag-blue: #041664;
  --flag-red:  #6d000d;
  --flag-white: #ffffff;
  --radius: 14px;
}
*{box-sizing:border-box}
.index-body {
  background-color: #001327 !important;
  background-image: none !important;
  color: white;
}

.home-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 40px;
}

.home-logo img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.container{width: calc(100% - 40px); max-width: 1000px; margin: 0 auto;}

 .site-header {
      background: linear-gradient(90deg, var(--flag-blue), var(--flag-red));
      color: var(--flag-white);
      padding: 16px 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .site-header h1 {
      font-size: 18px;
      margin: 0;
      font-weight: 700;
      text-align: center;
    }

    .top-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .top-nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .top-nav a:hover {
      text-shadow: 0 0 8px #fff;
    }


    .main-content{
  display:flex;
  flex-direction:column;
  gap:22px;
  padding:30px 0;
}
.card{
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding:20px;
  border-radius:var(--radius);
  box-shadow:0 8px 20px rgba(0, 0, 0, 0.3);
}
.card p{
  line-height:1.6;
  font-size:16px;
  color:#fff;
  margin:0;
}
@media (max-width: 768px){
 
   
      .header-inner {
        flex-direction: column;
        text-align: center;
      }

      .site-header h1 {
        font-size: 16px;
      }

      .main-content {
        padding: 20px 10px;
        font-size: 15px;
      }

}

body{
  
  font-family: 'Inter', system-ui, sans-serif;
  color:#ffffff;
}

.report-item {
  text-align: center;
}

.report-item img {
  display: block;
  margin: 0 auto;
}

.report-item p {
  text-align: center;
  margin-top: 15px;
  width: 85%; /* optional, to match image width */
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: 'Inter', sans-serif;
  
  color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}


.top-nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  max-width: 600px;
  margin: 50px auto;
  background: rgba(0, 0, 0, 0.301);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.151);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #e6ecee9f;
}


.contact-form input, .contact-form textarea {
    width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border: 2px solid rgba(29, 28, 28, 0.575); /* visible border */
  border-radius: 10px;
  background: transparent; /* makes background invisible */
  color: rgb(255, 255, 255); /* text inside visible */
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  
}

/* Change placeholder text color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #e6ecee9f; /* 💙 change this to any color you like */
  opacity: 1; /* make it fully visible */
}


.contact-form button {
  background: linear-gradient(90deg, #001264, #6d000d);
  color: rgba(255, 255, 255, 0.356);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0);
}

.success-message {
  display: none;
  text-align: center;
  color: lightgreen;
  margin-top: 15px;
}

/* Reset & base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
.login-body{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: url('orelsekrie.jpg') no-repeat center center fixed;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Full page wrapper to center content */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

/* Keep the login area full-width on mobile but constrained on larger screens */
.login-wrap {
  width: 100%;
  max-width: 420px;
}

/* Login box: transparent background (as requested) */
.login-box {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  /* NO background color - fully transparent so flag shows through */
  backdrop-filter: (4px); /* gentle blur for legibility while keeping transparency */
  -webkit-backdrop-filter: (4px);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

/* Title layout similar to the provided image */
.login-box h1 {
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* Inputs styled to look like floating pale boxes while login box itself remains transparent */
.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: rgba(255,255,255,0.95); /* pale input like in sample */
  color: #222;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Button matches dark navy from sample */
#loginBtn {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  background: #10273a;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16,39,58,0.35);
}

#loginBtn:active { transform: translateY(1px); }

.forgot {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  opacity: 0.95;
}

.error {
  color: #ffdddd;
  margin-top: 10px;
  font-size: 14px;
}

/* Desktop tweaks */
@media (min-width: 900px) {
  .login-wrap { max-width: 420px; }
  .login-box { padding: 28px; }
  .login-box h1 { font-size: 22px; }
}

/* Ensure good contrast on very small screens */
@media (max-width: 360px) {
  .login-box h1 { font-size: 18px; }
  .login-box input { padding: 10px; font-size: 14px; }
  #loginBtn { padding: 11px; font-size: 14px; }
}

.contact-body {
  background-color: #001327;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: white;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
}

.contact-logo {
  width: 160px;
  height: auto;
  margin-bottom: 25px;
  margin-top: 40px;
  
}

.contact-form {
  max-width: 600px;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 0 15px rgba(255,255,255,0.08);
}

.contact-form h2 {
  color: #ffffffcc;
}


:root {
  --flag-blue: #041664;
  --flag-red:  #6d000d;
  --flag-white: #ffffff;
}




