* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.main {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
              url('back.png') no-repeat center center/cover;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
}

.icon .logo img {
  width: 100px;
  height: 100px;
  cursor: pointer;
  margin-top: 180px;
  filter: drop-shadow(0 0 2px #aaccee);
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.menu ul li a {
  color: #0d1b2a;
  text-decoration: none;
  font-weight: bold;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}

ul li a:hover {
  color: #3a6ea5;
}

.btn {
  background-color: #a8d1ff;
  color: #0d1b2a;
  padding: 6px 15px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: white;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  color: #1c1c1c;
}

.text {
  max-width: 50%;
}

.text h1 {
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 180px;
  color: #0d1b2a;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}

.text .par {
  font-size: 16px;
  margin-bottom: 20px;
  color: #0d1b2a;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}

.cn {
  background-color: #3a6ea5;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cn:hover {
  background-color: #2c507c;
}

.cn a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.form {
  width: 300px;
  background-color: #ffffff !important; /* enforce pure white background */
  padding: 30px;
  border-radius: 10px;
  margin-right: 130px;
  margin-top: 180px;
  box-shadow: 0 0 10px #aaccee;
  color: #000000 !important; /* enforce black text */
}

.form h2 {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  text-shadow: 
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}

.form input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border: none;
  border-bottom: 2px solid #a8d1ff;
  background: transparent;
  color: #000000 !important; /* enforce black input text */
  font-weight: 600;
}

.form input::placeholder {
  color: #4f6a88;
}

.btnn {
  width: 100%;
  background: #a8d1ff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: 700;
  color: #0d1b2a;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btnn:hover {
  background-color: #3a6ea5;
  color: white;
}

.btnn a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

.link {
  color: #162534;
  background: none;
  text-align: center;
  margin-top: 10px;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}

.link a {
  color: #000000 !important; /* enforce black link */
  background: transparent;
  text-decoration: none;
  font-weight: bold;
}

.liw {
  color: #162534;
  text-align: center;
  margin-top: 15px;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.icons a {
  color: #345678;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}

.icons a:hover {
  color: #3a6ea5;
}
