* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
      }

      /* HEADER */
      .header {
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        padding: 14px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: #6b7280;
      }
      .header a {
        text-decoration: none;
      }
      .term-condition a {
        padding-left: 15px;
        color:#3E4A40;
      }

      /* BACKGROUND */
      .wrapper {
        background: #eef2f5;
        min-height: calc(100vh - 60px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 15px;
      }

      /* CARD */
      .card {
        width: 100%;
        background: #ffffff;
        border: 1px solid #bdcabe;
        border-radius: 10px;
        padding: 30px 50px;
        max-width: 480px;
      }

      /* LOGO */
      .liendraw-logo-wrapper{
        text-align: center;
        max-width: 90px;
        margin: 0 auto;

      }
      .logo {
        width: 36px;
        height: 36px;
        background: #111;
        border-radius: 6px;
        margin: 0 auto ;
      }

      /* TEXT */
      

      .subtitle {
        font-size: 13px;
        text-align: center;
        color: #6b7280;
        margin-bottom: 32px;
        margin-top: 10px;
      }

      /* FORM */
      .form-group {
        margin-bottom: 20px;
      }

      label {
        font-size: 12px;
        line-height: 16px;
        color: #3e4a40;
        margin-bottom: 10px;
        display: block;
        text-transform: uppercase;
        font-weight: 500;
      }

      /* INPUT */
      .input-wrapper {
        position: relative;
      }

      .input-wrapper input {
        width: 100%;
        padding: 10px 12px 10px 38px;
        border-radius: 6px;
        border: 1px solid #c4cfc5;
        background: #f2f4f6;
        font-size: 14px;
      }

      .input-wrapper input:focus {
        border-color: #c4cfc5;
        background: #f2f4f6;
        outline: none;
      }

      /* ICON */
      .input-icon {
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        stroke: #6e7a70;
      }

      /* PASSWORD ROW */
      .password-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .password-row a {
        font-size: 12px;
        color: #0b6b3a;
        text-decoration: none;
        font-weight: 500;
      }
      ::placeholder {
        color: rgba(110, 122, 112, 0.5);
      }

      /* REMEMBER */
      .remember {
        display: flex;
        align-items: center;
        font-size: 14px;
        margin: 10px 0;
        line-height: 20px;
        font-weight: 400;
      }

      .remember input {
        margin-right: 8px;
      }

      /* BUTTON */
      .btn {
        width: 100%;
        padding: 15px 20px;
        background: #006d3e;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 20px;
        line-height: 28px;
        cursor: pointer;
        margin-top: 8px;
        font-weight: 600;
      }
      .btn:hover{
        background: #008F52;
      }

      /* ✅ DIVIDER (KEY FIX) */
      .divider {
        margin: 35px 0;
        border-top: 1px solid #e5e7eb;
      }

      /* SUPPORT */
      .support {
        text-align: center;
        font-size: 14px;
        color: #3e4a40;
        font-weight: 500;
      }

      .support a {
        color: #006d3e;
        text-decoration: none;
      }

      /* FOOTER OUTSIDE */
      .bottom-footer {
        margin-top: 20px;
        max-width: 480px;
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #6b7280;
        width: 100%;
      }

      /* ALERTS */
      .error,
      .message {
        padding: 10px;
        border-radius: 6px;
        margin-bottom: 10px;
        font-size: 13px;
      }

      .error {
        background: #fee2e2;
        color: #b91c1c;
      }

      .message.success {
        background: #dcfce7;
        color: #166534;
      }
   #toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

  .toast-message {
    min-width: 320px;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
  }

  .toast-message.success {
    background: #16a34a;
  }

  .toast-message.error {
    background: #dc2626;
  }

  .toast-message.warning {
    background: #f59e0b;
  }

  .toast-message.info {
    background: #2563eb;
  }

  .toast-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 12px;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }