* {
    margin: 0;
    padding: 0; 
    font-family: montserrat;
}

    body {
      background-color: #0aa0f7;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .container {
      background: white;
      width: 800px;
      display: flex;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .login-box {
      display: flex;
      width: 100%;
      flex-wrap: wrap;

    }

    .form-section {
      flex: 1;
      padding: 40px;
    }

    h2 {
      margin-bottom: 30px;
      color: #222;
      border-bottom: 3px solid #6fc2f2;
      display: inline-block;
      padding-bottom: 5px;
    }

    .input-group {
      display: flex; 
      align-items: center;
      margin-bottom: 20px;
      border-bottom: 1px solid #ccc;
      padding: 10px 0;
    }
    .error {
      color: red;
      font-size: 0.9em;
      margin-top: -12px;
      margin-bottom: 12px;
    }

    .input-group i {
      color: #6fc2f2;
      margin-right: 10px;
    }

    .input-group input {
      border: none;
      outline: none;
      flex: 1;
      font-size: 16px;
    }

    .forgot {
      display: block;
      margin-bottom: 20px;
      color: #6fc2f2;
      text-decoration: none;
      font-size: 14px;
    }

    .login-btn {
      width: 100%;
      padding: 12px;
      background: #3daeef;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      margin-bottom: 20px;
    }
   .login-btn:hover{
    background-color: #0aa0f7;
   }
    .signup-text {
      font-size: 14px;
    }

    .signup-text a {
      color: #6fc2f2;
      text-decoration: none;
    }

    .image-section {
      flex: 1;
      background-image: url('loginlaptop.jpg'); /* Replace with your own image URL if needed */
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .overlay-text {
      position: absolute;
      bottom: 30px;
      left: 30px;
      color: white;
    }

    .overlay-text h3 {
      font-size: 24px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .overlay-text p {
      font-size: 16px;
    }
   
      
  @media(max-width: 800px) {
    
    .container{
      margin: 10px;
    }

  }

@media(max-width: 500px) {
  .image-section{
      display: none;
      
    }
  }