/* index file*/

.index-body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh; /* full screen height */
      margin: 0; /* remove default spacing */
      font-family: Arial, sans-serif;
      background-color: #08002a;
      
    }

    .form-box {
      
      display: flex;
      
      background: #290062;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgb(255, 0, 0);
      overflow: hidden;
      position: absolute;
      size-adjust: 100%;
      /*background: linear-gradient(45deg, #dede35, #dea635);*/
      /*background: linear-gradient(45deg, #ff0000, #0000ff);*/
      width: 700px;
      height: 400px;
      
      

      
    }

    /* Left side image inside the box */
    .image-side {
      flex: 2;
      background: url("final side pic 2.jpg") no-repeat center center/cover;
    }

    /* Right side form */
    .form-side {
      flex: 1;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: left;
    }

    .form-side h2 {
      margin-bottom: 20px;
      text-align: center;
      color: #fff;
      text-align: left;
    }

    .form-side input {
      width: 92%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #000000;
      border-radius: 8px;
      background-color: rgb(255, 255, 255);
      color: black;
    }

    .form-side button {
      width: 100%;
      padding: 12px;
      margin-top: 15px;
      background: #29a6b9;
      border: none;
      border-radius: 8px;
      color: white;
      font-size: 16px;
      cursor: pointer;
      align-items: self-endd;
      border: #553603 2px solid;
    }

    .form-side button:hover {
      background: #19798c;
      border: #ffffff 2px solid;
    }

    .image-side {
      flex: 1;
      background: url("final side pic 2.jpg") no-repeat center center/cover;
      

    }
    footer {
      text-align: center;
      padding: 20px;
      background: #1a1a1a;
      color: #bbb;}

    .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #1c1c1c;
    color: #bbb;
    }

    .bg{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.5; /* Adjust opacity as needed */
    }

    @media (max-width: 768px) {
    .form-box {
      flex-direction: column;
      width: 90%;
      height: auto;
    }
    .image-side {
      height: 200px;
    }
    }
    nav {
      display: flex;
      justify-content: center;
      gap: 20px;}
    
    html {
  color-scheme: light only;
}
/* end of index file*/
