 body {
      margin: 0;
      height: 130vh;
      background-color: #fef3ef;
      display: flex;
      font-family: 'Inter', sans-serif;
    }

    a {
      text-decoration: none;
      color: #F96307;
    }

    .sidebar {
      background: #111a2c;
      color: white;
      padding: 2rem;
      width: 23%;
      position: relative;
      background-image: url('../images/sidebar/sideimage.png');
      background-size: cover;
    }

    .auth-container {
      width: 77%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .auth-box {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      width: 100%;
      max-width: 400px;
      margin: auto;
      margin-top: 100px;
    }

    .form-control::placeholder {
      color: #ccc;
    }

    .form-group {
      position: relative;
    }

    .form-icon {
      position: absolute;
      padding: 20px 0;
      top: 70%;
      left: 12px;
      transform: translateY(-50%);
      color: #aaa;
    }

    .toggle-password {
      position: absolute;
      top: 70%;
      right: 12px;
      transform: translateY(-50%);
      color: #aaa;
      cursor: pointer;
    }

    .form-control {
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-size: 0.95rem;
  border-radius: 8px;
}

.form-control.password-input {
  padding-right: 2.5rem;
}

    .btn-orange:hover {
      background-color: #f9a07f;
      color: white;
      padding: 10px;
    }
    
    .btn-orange {
      background-color: #F96307;
      color: white;
      padding: 10px;
    }
    .txt-orange-full {
      color: #F96307;
      
    }

    .btn-orange-mid {
      background-color: #f9a07f;
    }

   
    label {
      font-weight: 500;
      margin-bottom: 0.5rem;
    }
