* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  body {
    display: flex;
    flex-direction: row;
    box-shadow: 4px 4px 4px 4px rgb(231, 231, 231);
    border-radius: 1rem;
    border: 1px solid rgb(219, 219, 219);
    height: 100vh;
  }

  .blue-side {
    width: 50%;

    background-color: #0e1079;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-side {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;

  }

  .form-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;

    height: 70vh;

  }

  .form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    color: #555;
  }

  .form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid grey;
    border-radius: 5px;
    font-size: 14px;
  }

  .form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.6);
  }

  .form-container button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    border-radius: 1rem;
    height: 7vh;
    cursor: pointer;
  }

  .form-container button:hover {
    background-color: #0056b3;


  }

  .form-container p {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
  }

  .form-container a {
    color: #007bff;
    text-decoration: none;
  }

  .form-container a:hover {
    text-decoration: underline;
  }

  .form-container img {
    height: 100px;
    width: 100px;
  }

  .blueSideImg {
    width: 30vw;
    height: 50vh;
  }

  .error {
    color: red;
  }


  @media (max-width: 600px) {

    .blueSideImg {
      width: 70vw;
      height: 40vh;
    }


    body {
      display: flex;
      flex-direction: column;
      box-shadow: 4px 4px 4px 4px rgb(231, 231, 231);
      border-radius: 1rem;
      border: 1px solid rgb(219, 219, 219);
      height: 100vh;
    }

    .blue-side {
      width: 100%;
      
      background-color: #0e1079;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-side {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;

    }

    .form-container img {
      height: 100px;
      width: 100px;
    }






  }




  @media (min-width: 601px) and (max-width: 1000px) {



    .blueSideImg {
      width: 30vw;
      height: 30vh;
    }

    .form-container {
      width: 100%;
      max-width: 400px;
      padding: 20px;
      border-radius: 10px;
      height: 40vh;
    }



  }


  @media screen and (min-width: 1400px) {
    body {
      font-size: 18px;
      max-width: 100%;
      margin: auto;
    }

    .form-container {
      width: 100%;
      max-width: 450px;
      padding: 20px;
      border-radius: 10px;

    }
  }