/* styles.css */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    position: relative;
  }
  
  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
  }
  
  .background-left {
    flex-basis: 42.5%;
    background-color: #ffffff;
  }
  
  .background-right {
    flex-basis: 57.5%;
    background: url(background.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .container {
    display: flex;
    width: 75%;
    height: 500px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    position: relative;
  }
  
  .left-section {
    flex-basis: 40%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .logo img {
    width: 300px;
    height: 300px;
  }
  
  .logo span {
    color: #d354a2;
    font-weight: bold;
  }
  
  .right-section {
    flex-basis: 60%;
    background: url(background.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  
  .login-form {
    width: 80%;
    max-width: 350px;
    text-align: center;
  }
  
  .login-form h2 {
    margin-bottom: 20px;
    font-size: 27px;
    letter-spacing: 0.1px;
  }
  
  .login-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 400;
    margin-left: 10px;
  }
  
  .login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 11px;
    font-size: 14px;
  }
  .login-form hr {
    border: none;
    height: 2px;
    background-color: #fff;
    margin-bottom: 20px;
  }
  
  .login-form input:focus {
    outline: none;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4);

  }
  
  .login-form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    font-size: 16px;
    width: 22rem;
  }
  
  .login-form button:hover {
    background-color: #333;
  }
  
  .forgot-password {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    text-align: right;
    font-weight: 400;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
   
/* Responsive Design */
@media (max-width: 768px) {
    .container {
      flex-direction: column;
      width: 90%;
      height: auto;
    }
  
    .left-section,
    .right-section {
      flex-basis: 100%;
      height: auto;
    }
  
    .background {
      flex-direction: column;
    }
  
    .background-left,
    .background-right {
      flex-basis: 100%;
    }
  
    .login-form {
      width: 90%;
    }
  
    .login-form button {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .login-form h2 {
      font-size: 22px;
    }
  
    .login-form label {
      font-size: 14px;
    }
  
    .login-form input {
      font-size: 13px;
    }
  
    .login-form button {
      font-size: 14px;
      padding: 8px;
    }
    .logo img{
        width: 260px;
        height: 287px;
    }
  }
  @media (max-width:1180px) {
    .container {
     
        width: 88%;
       
      }
  }