    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #343a40;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    }

    .login-container {
      width: 100%;
      max-width: 400px;
      padding: 20px;
    }

    .logo {
      text-align: center;
      margin-bottom: 30px;
    }

    .logo img {
      max-width: 150px;
      height: auto;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-control {
      width: 100%;
      padding: 12px 12px 12px 60px;
      border: none;
      border-radius: 4px;
      background-color: #f8f9fa;
      box-sizing: border-box;
      font-size: 16px;
    }

    .username-input {
      padding-left: 60px;
    }
.username-group {
    position: relative;
}

.username-icon-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    background-color: #2255a4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin: 1px;
}
.username-icon-wrapper2 {
    position: absolute;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    background-color: #343a40;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin: 1px;
}

.username-icon {
    color: white;
    font-size: 17px;
}

    .password-input {
      padding-left: 60px;
    }

    .button-group {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
    }

    .forgot-password {
    color: white;
    background-color: #da542e;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    }
    .forgot-password:hover {
      background-color: #b54120;
      color:white;
    }
    .p-r{
        padding-right: 5px;
        font-size: medium;
    }

    .login-btn {
      background-color: #28b779;
      color: white;
      border: none;
      padding: 8px 20px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
    }

    .login-btn:hover {
      background-color: #218838;
    }

    @media (max-width: 480px) {
      .login-container {
        padding: 15px;
      }
      
      .button-group {
        flex-direction: column;
        gap: 15px;
      }
      
      .login-btn {
        width: 100%;
      }
    }