 <style>
    body {
      margin: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      /* Two equal columns */
      height: 100vh;
      position: relative;
    }

    .left-section {
      position: relative;
      /* Ensures the pseudo-element is positioned relative to this container */
      color: white;
      /* Text color */
      z-index: 0;
      /* Places content above the background image */
    }

    .left-section::before {
      content: "";
      /* Required for pseudo-elements */
      position: fixed;
      /* Fixes the image position relative to the viewport */
      bottom: 0;
      left: 0;
      height: 100%;
      /* Full viewport height */
      width: 50%;
      /* Full viewport width */
      background-image: url("wave2.PNG");
      /* Path to the image */
      background-size: cover;
      /* Makes the image cover the entire area */
      background-repeat: no-repeat;
      /* Prevents image repetition */
      background-position: center;
      /* Centers the image */
      z-index: -1;
      /* Places the image behind other content */
    }

    .left-section img {
      position: absolute;
      top: 30px;
      /* Distance from the top */
      left: 50px;
      /* Distance from the left */
    }

    .left-section .user__title {
      position: absolute;
      top: 60px;
      /* Adjust this value to align below the image */
      left: 190px;
      /* Align with the image's left edge */
      font-size: 60px;
      margin: 0;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      /* Stylish shadow effect */
      font-family: "Garamond", sans-serif;
      /* Optionally set a clean font */
      color: #12d8fa;
    }

    .left-section .ls-mid {
      position: absolute;
      top: 600px;
      /* Adjust this value to align below the image */
      left: 50px;
      /* Align with the image's left edge */
      font-size: 30px;
      margin: 0;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      /* Stylish shadow effect */
      font-family: "Garamond", sans-serif;
      /* Optionally set a clean font */
    }

    .left-section .ls-bottom {
      position: absolute;
      top: 900px;
      /* Adjust this value to align below the image */
      left: 50px;
      /* Align with the image's left edge */
      /* font-size: 0px; */
      margin: 0;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      /* Stylish shadow effect */
      font-family: "Garamond", sans-serif;
      /* Optionally set a clean font */
    }

    .right-section {
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      position: relative;
      margin-left: 200px;
    }



    .right-section img {
      position: absolute;
      border-radius: 10%;
      top: 30px;
      /* Distance from the top */
      right: 50px;
      /* Distance from the right */
      cursor: pointer;
      /* Changes the cursor to a pointer to indicate it's clickable */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      /* Smooth transition for transform and shadow */
    }

    .right-section img:hover {
      transform: scale(1.1);
      /* Scales up the image */
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      /* Adds shadow for 3D effect */
    }



    .login-card {
      display: none;
      /* Initially hidden */
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(255, 255, 255, 0.9);
      /* Semi-transparent white */
      border: 3px solid #12d8fa;
      border-radius: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
      padding: 10px;
      max-width: 400px;
      width: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeIn 0.5s ease;
      /* Animation when shown */
    }

    .login-card:hover {
      transform: translate(-50%, calc(-50% - 5px));
      /* Slight lift effect */
      /* Enhanced shadow effect on hover */
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 40px rgba(0, 0, 0, 0.2);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translate(-50%, -60%);
      }

      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }



    .login-card h2 {
      text-align: center;
      color: #1fa2ff;
      margin-bottom: 20px;
    }

    .login-card .form-label {
      font-weight: 500;
      color: #000;
    }

    .login-card .form-control {
      border: 1px solid #007bff;
      border-radius: 5px;
      padding: 10px;
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .login-card .form-control:focus {
      outline: none;
      box-shadow: 0 0 8px rgba(0, 123, 255, 0.8);
      border-color: #0056b3;
    }

    .login-card .btn-submit {

       /*display: block;*/
      width: 120px;
      height: 40px;
      border-radius: 25px;
      outline: none;
      border: none;
      background-image: linear-gradient(to right, #1fa2ff, #12d8fa, #1fa2ff);

      background-size: 200%;
      font-size: 1.2rem;
      color: #fff;
      font-family: 'Garamond', sans-serif;
      text-transform: uppercase;
      margin: 1rem auto;
      cursor: pointer;
      transition: .5s;
    }
	
	
	.login-card .btn-reset {

      /*display: block;*/
      width: 120px;
      height: 40px;
      border-radius: 25px;
      outline: none;
      border: none;
      background-image: linear-gradient(to right, #1fa2ff, #12d8fa, #1fa2ff);

      background-size: 200%;
      font-size: 1.2rem;
      color: #fff;
      font-family: 'Garamond', sans-serif;
      text-transform: uppercase;
      margin: 1rem auto;
      cursor: pointer;
      transition: .5s;
    }

    .login-card .btn-submit:hover {
      background-position: right;
    }

    .input-div.email {
      position: relative;
      display: grid;
      grid-template-columns: 7% 93%;
      margin: 10px 0;
      padding: 5px 0;
      border-bottom: 2px solid #120f0f;
    }

    .input-div.email:before,
    .input-div.email:after {
      content: '';
      position: absolute;
      bottom: -2px;
      width: 0%;
      height: 2px;
      background-color: #12d8fa;
      transition: 0.4s;
    }

    .input-div.email:before {
      right: 50%;
    }

    .input-div.email:after {
      left: 50%;
    }

    .input-div.email.focus:before,
    .input-div.email.focus:after {
      width: 50%;
    }

    .input-div.email.focus>div>h5 {
      top: -5px;
      font-size: 15px;
    }

    .input-div.email.focus>.i>i {
      color: #38d39f;
    }

    .input-div.email>.i {
      color: #d9d9d9;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
    }

    .input-div.email>.i i {
      transition: 0.3s;
    }

    .input-div.email>div>h5 {
      position: absolute;
      left: 10px;
      top: 20%;
      padding-bottom: 20px;
      transform: translateY(-50%);
      color: #1e1616;
      font-size: 18px;
      font-weight: bold;
      transition: 0.3s;
    }

    .input-div.email>div>input {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border: none;
      outline: none;
      background: none;
      padding: 0.5rem 0.7rem;
      font-size: 1.2rem;
      color: #555;
      font-family: 'Garamond', sans-serif;
    }

    .image-modern {
      width: 80px;
      height: 80px;
      border: 2px solid transparent;
      /* Transparent border for gradient background */
      border-radius: 10%;
      /* Makes the border circular */
      /* background: linear-gradient(135deg, #12d8fa, #a6ffcb); */
      /* Gradient border */
      /* padding: 5px; */
      /* Padding creates space for the gradient border effect */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      /* Subtle shadow for depth */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      /* Smooth hover effect */
    }

    .image-modern:hover {
      transform: scale(1.1);
      /* Slight zoom-in effect on hover */
      /* border-color: #12d8fa; */
      /* Change border to gold on hover */
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
      /* Enhanced shadow on hover */
    }
  </style>