* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  .main {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('coding.jpg') 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;
  }
  
  .menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  
  .menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  ul li a:hover {
    color: aqua;
}

  

 
  
  .btn {
    background-color: #5b9d9e;
    color: white;
    padding: 6px 15px;
    border: none;
    cursor: pointer;
  }
  
  .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    color: white;
  }
  
  .text {
    max-width: 50%;
  }
  
  .text h1 {
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 180px;
  }
  
  .text .par {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .cn {
    background-color: rgb(0, 9, 128);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
  }
  
  .cn:hover{
    background-color: coral;
  }

  .cn a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .form {
    width: 300px;
    background-color: rgba(0,0,0,0.7);
    padding: 30px;
    border-radius: 10px;
    margin-right: 130px;
    margin-top: 180px;
  }
  
  .form h2 {
    background: white;
    color: rgb(0, 30, 128);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
  }
  
  .form input {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border: none;
    border-bottom: 2px solid rgb(0, 32, 128);
    background: transparent;
    color: white;
  }
  
  .btnn {
    width: 100%;
    background: rgb(0, 38, 128);
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  .btnn:hover{
    background-color: rgb(12, 179, 18);
  }

  .btnn a {
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  
  .link {
    color: white;
    text-align: center;
    margin-top: 10px;
  }
  
  .link a {
    color: red;
    text-decoration: none;
  }
  
  .liw {
    color: white;
    text-align: center;
    margin-top: 15px;
  }
  
  .icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    
  }
  
  .icons a {
    color: white;
    font-size: 20px;
    cursor: pointer;
  }
  