body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    background-color: #c69332;
    color: #333;
    background: url('https://sgss.myeduapp.in/images/background_03.jpg');

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh; /* Adjust height as needed */

  }

  .left-section {
    width: 70%;

  }

  .right-section {
    width: 30%;
    padding: none;
    box-sizing: border-box;
    min-width: 400px;
    min-height: 500px;
    background: linear-gradient(180deg,rgb(252, 252, 252) 40%,#9999ff 100%);
  }

  .container {
    max-width: 600px;
    margin: 30px;
    width: initial;
  }

  .logo {
    width: 80px;
  }

.font-weight-light{
    font-weight: 100;
}

  @media (max-width: 767px) {
    body {
      background: none;
    }

    .container {
      margin: auto;
      padding: 30px;
    }

    .left-section {
      display: none;

    }

    .right-section {
      width: 100%;
      position: relative;
      padding: 0px;
    }
  }