html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  margin: 0px;
  background: linear-gradient(
    180deg,
    rgba(116, 240, 219, 0.308) 0%,
    rgb(25, 5, 71) 100%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: #f0f0f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  height: 100vh;
  padding: 0 2rem 2rem 2rem;  /* top right bottom left */
  /* padding-top: 20px;  height of .logo-container + buffer */
}


.logo-container {
  /* position: fixed; */
  position: relative;
  top: 0;
  left: 0;
  padding-left: 50px;     /* 👈 match your original offset */
  width: 100%;
  height: 140px; /* adjust to your actual logo height */
  z-index: 1000;
  background: linear-gradient(
  to bottom,
  rgba(255, 255, 255, 0.3) 0%,
  rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: flex-start;  /* 👈 aligns logo to the left */
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


.logo {
  width: 250px;          /* Adjust as needed */
  height: auto;
  display: block;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 10px;
}



.lang-switch img {
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lang-switch img:hover {
  transform: scale(1.1);
}

/* === Language Flag Styles === */
.flag {
  width: 32px;
  height: auto;
  max-width: 100%;
  display: inline-block;
}


h1 {
  margin-top: 60px;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  text-align: center;
  color: rgb(13, 85, 143);
}

h2 {
  text-align: center;
}

p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

a {
  color: #66ccff;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  opacity: 0.6;
}
