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

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    background-image:url(../assets/images/background2.jpg);
    background-size: cover;
}

header {
  padding: 40px 0;

}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a{
  text-decoration: none;
    color: white;
}

header h1 {
  font-weight: 2000;
  font-size: 40px;
}  

header h1 span {
  font-weight: 20; 
  padding-left: 10px;

}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  header nav ul {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 25px 50px;
    margin-top: 7px;
    border-radius: 10px;
    gap: 15px;
    align-items: center;
  }

  #menu-toggle:checked + .menu-icon + nav ul  {
    display: flex;
  }

}



nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 25px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: black;
}

.landing {
  padding: 80px 0;

}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.text-content {
  max-width: 600px;
}

.text-content h2 {
  font-size: 100px;
  font-weight: bold;
}

.text-content h3 {
  font-size: 30px;
  font-weight: bold;
}

.text-content p {
  margin: 20px 0;
  line-height: 1.6;
}

.learn-more {
  background: transparent;
  border: 4px solid white;
  padding: 10px 25px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
  transition: color 0.7s ease;
}

.learn-more:hover{
  background: white;
  color: black;
}

.login{
    background-color: blanchedalmond;
    width: 400px;
    padding: 30px;
    padding-bottom: 100px;
    border-radius: 20px;
    text-align: center;
    color: black;
}

.login input[type="text"],
.login input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 2px solid black;
  border-radius: 30px;
  outline: none;
  font-size: 17px;
  text-align: center;
  font-weight: 900;
  color: black;
}

.login input::placeholder {
  color: black;
  opacity: 1; 
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login input:focus::placeholder {
  color: transparent;
}


.login h3{
  padding: 50px;
  font-size: 21px;
  font-weight: 100;
  letter-spacing: 3px;
}

.login .buttons{
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.login .buttons button {
  background: linear-gradient(to right,  #a28d70, #a18c6d);
  padding: 10px 40px;
  border-radius: 20px;
  color: white;
  font-size: 17px;
  font-weight: bolder;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.6s ease;
}

.login .buttons button:hover{
  background:black;
}

.login .buttons .options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.login .buttons .options .radio-item {
  display: flex;
  align-items: center;
  gap: 5px; 
}


@media (max-width: 768px) {

  header h1 {
    font-size: 30px;
    text-align: center;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .landing{
    padding: 0;
  }

  .text-content h2 {
    font-size: 50px;
  }

  .text-content h3 {
    font-size: 20px;
  }

  .text-content p {
    font-size: 15px;
    padding: 0 10px;
  }

  .learn-more {
    padding: 8px 20px;
    font-size: 16px;
  }

  .login {
    width: 90%;
    padding: 25px;
    padding-bottom: 60px;
    margin-top: 20px;
  }

  .login h3 {
    padding: 20px;
    font-size: 18px;
  }

  .login .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .login .buttons .options {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
  }

  .login .buttons button {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 992px) {
 
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }


}
