    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      color: #333;
     background-color: #f7f9fc;
background-image: url("bg.jpg");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
    }
    .wrapper {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 800px;
      margin: 20px;
      background: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      overflow: hidden;
    }
    @media (min-width: 768px) {
      .wrapper {
        flex-direction: row;
      }
    }
    .left-section {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: left;
      align-items: left;
      padding: 30px;
      background: linear-gradient(135deg, #1f2940, #004c76);
      color: #fff;
      text-align: left;
    }
    .left-section img {

      width: 100px;
      margin-bottom: 20px;
    }
	.right-section img {
		      position: center;
      justify-content: center;
      align-items: center;
      width: 100px;
      margin-bottom: 20px;
    }
    .left-section h1 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
ul {
      font-size: 10px;
	  padding-left: 20px;
    }
    .left-section p {
      font-size: 15px;
      line-height: 1.5;
      max-width: 300px;
    }
    .right-section {
      flex: 1;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: #004c76;
    }
    .form-group {
      margin-bottom: 15px;
      position: relative;
    }
    .form-group input {
      width: 100%;
      padding: 12px 15px;
      font-size: 1rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      background: #f9f9f9;
      color: #333;
      outline: none;
      transition: all 0.3s;
    }
	    .form-group select {
      width: 100%;
      padding: 12px 15px;
      font-size: 1rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      background: #f9f9f9;
      color: #333;
      outline: none;
      transition: all 0.3s;
    }
    .form-group input:focus {
      border-color: #131b2e;
      box-shadow: 0 0 5px rgba(76, 132, 255, 0.5);
    }
    .btn {
      width: 100%;
      padding: 12px;
      font-size: 1rem;
      color: #fff;
      background: #131b2e;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }
.btn-sig{
      width: 100%;
      padding: 12px;
      font-size: 1rem;
      color: red;
      background: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .btn:hover {
      background: #004c76;
    }
    .forgot-link {
      display: block;
      margin-top: 10px;
      text-align: center;
      font-size: 0.9rem;
      color: #4c84ff;
      text-decoration: none;
    }
    .forgot-link:hover {
      text-decoration: underline;
    }
    .credit{
        font-size:10px;
        color:#1f2940;
        text-align:center;
        margin-top:20px;
    }
    @media (max-width: 768px) {
      .left-section {
        padding: 20px;
      }
      .right-section {
        padding: 20px;
      }
    }