
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container-auth {
    display: flex;
    height: 100vh;

  }

  .left-panel, .right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
  }

  .left-panel {
    background: 
      linear-gradient(to bottom right, rgba(6, 74, 110, 0.9), rgba(4, 54, 74, 0.9)),
      url('/new-adminvendors/img/background-img.png');
    background-size: cover;
    background-position: center;
    color: #fff;
  }

  .right-panel {
    background: #fff;
    align-items: center;
  }

  .logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
  }

  .logo span {
    color: #fb5c5c;
  }

  h2 {
    font-size: 25px;
    font-family: 'Poppins';
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 10px;
  }

  .subtitle {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    font-family: 'inter';
  }

  .theme-form {
    width: 100%;
  }

  .form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .form-wrapper input[type="email"],
  .form-wrapper input[type="password"] {
    width: 50%;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 8px !important;
    border: 1px solid #D2D5DA !important;
    box-shadow: 0px 2px 2px 0px #0000000D !important;

  }

  .form-wrapper small {
    width: 50%;
    text-align: left;
    margin-bottom: 8px;
    color: #f8d7da;
  }

  .form-options {
    width: 53%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin: 10px 0 20px;
    font-family: 'inter';
    font-weight: 500;
  }

  .form-options a {
    color: #fb5c5c;
    text-decoration: none;
  }

  .login-btn {
    width: 255px;
    height: 45px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #03A1AA;
    border: 1px solid #03A1AA80;
    border-radius: 8px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 2px 2px 0px #0000000D;
  }

  .signin-text {
    text-align: center;
    margin-bottom: 10px;
    font-family: 'inter';
    font-family: Inter;
font-weight: 500;
font-size: 14px;
line-height: 26px;
letter-spacing: 0%;

  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .social-icons img {
    width: 36px;
    height: 36px;
    cursor: pointer;
  }

  .support-text {
    color: #ddd;
    font-family: 'Inter';
font-weight: 300;
font-size: 12px;
line-height: 26px;
letter-spacing: 0%;
text-align: center;

  }

  .support-text a {
    color: #fff;
    text-decoration: underline;
  }

  .demo-box {
    text-align: center;
    background: linear-gradient(180deg, #ECF5FE 0%, rgba(205, 236, 238, 0.3) 100%);
    border-radius: 8px;
    padding: 50px 30px;
    width: 100%;
    max-width: 579px;
    max-height: 400px;
  }

  .demo-box h3 {
    color: #003B59;
    margin-bottom: 40px;
    font-family: 'Mulish';
    font-weight: 800;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;


  }

  .demo-image {
    max-width: 80%;
    height: auto;
    margin: 20px auto;
    display: block;
  }

  .demo-btn {
    text-decoration: none;
    background-color: #F16553;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Mulish';
    font-weight: 900;
    cursor: pointer;
  }

  .dots {
    margin-top: 40px;
  }

  .dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #999;
  }

  .dots .active-dot {
    background-color: #1d2b53;
  }