
body {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgb(255, 255, 255), transparent);
}

/* Navbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background-color: #ffffff;
    padding-top: 60px; /* Ensures content is not hidden under navbar */
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgb(5, 100, 126), transparent);
    padding: 10px 20px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  #newlogo1 {
    width: 15%;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 10px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background: #ffa600;
      text-align: center;
    }
  
    .nav-links li {
      padding: 10px;
    }
  
    .menu-toggle {
      display: block;
    }
  }



.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    
}

.log_box{
    background: url('back2.jpg') no-repeat center center/cover;
    height: 50vh;
    width: 20%;
    
    
}
.lbox{
    height: 50vh;
    background: white;
    width: 20%;
    background: linear-gradient(to top, rgb(5, 100, 126), transparent);
}

.leftsec {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding: 20px;
    text-align: center;
    color: white;
}

.rightsec {
    width: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
   
    justify-content: center;
}

h2 {
    margin-bottom: 20px;
    color: rgb(223, 158, 7);
}
#newlogo{
    width: 45%;
}

input {
    width: 70%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    align-items: center;
}

button {
    width: 90%;
    padding: 10px;
    background: #02082e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #3026ef;
}
