 
   html {
      width: 100%;
      height: 100%;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: 'Arial', sans-serif;
      height: 100%;
      width: 100%;
      background-color: #F2F4F7;
      color: #fff;
      overflow: auto;
      max-width: 95%;
      margin:auto
    }

    .form-container {
      display: flex;
      flex-wrap: wrap;
      width: 800px;
      max-width: 95%;
      min-height: 500px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      border-radius: 12px;
      background-color: #ffffff;
      color: #333;
      margin: auto;
      margin-top: 50px;
      /* overflow: auto; */

    }

    .image-section {
      background: url('/asset/media/images/login.jpeg') no-repeat center center/cover;
      position: relative;
      width: 50%;
      padding: 0px 5px;
      
    }

    .image-section .content {
      width: 100%;
      height: 100%;
      z-index: 2;
      position: relative;
      padding-top: 50px;

      
    }

    .image-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }

    .image-section p {
      font-size: 17px;
      font-weight: ;
      text-align: center;
    }

    .form-section {
      flex: 1;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .form-section h2 {
      margin-bottom: 1rem;
      text-align: center;
      color: #2575fc;
    }

    .form-section form {
      display: flex;
      flex-direction: column;
    }

    .form-section input {
      margin-bottom: 1rem;
      padding: 0.9rem;
      font-size: 1rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .form-section button {
      padding: 0.9rem;
      font-size: 1rem;
      background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

     button[type="submit"] {
      display: flex;
      justify-content: center;
    }

    button[type="submit"] div.loader {
      width: 15px;
      height: 15px;
      border: 2px solid white;
      border-top: 5px solid transparent;
      border-right: 5px solid transparent;
      border-radius: 50%;
      animation: rotate 0.5s linear infinite;
      display: none;
    }


    button[type="submit"].active .name {
      display: none;
    }

    button[type="submit"].active .loader {
      display: block;
    }

    .form-section button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .form-section p {
      margin-top: 1.5rem;
      text-align: center;
      font-size: 0.95rem;
      color: #666;
    }

    .form-section a {
      color: #2575fc;
      text-decoration: none;
      font-weight: bold;
    }

    .form-section a:hover {
      text-decoration: underline;
    }

   



    @keyframes rotate {
      from {
        transform: rotate(360deg)
      }
    }

    @media only screen and (max-width:700px) {
      .image-section {
        width: 100%;
        height: 280px;

      }

      .image-section h2{
        font-size: 25px;
      }
    }

    .image-section {
      color: white
    }


    .password-recovery-section{
        display: none;
    }