body {
    /* background: linear-gradient(to right, #ad9464, #fdf6e9); */
    /* background: #58a7d8; */
    /* background: linear-gradient(to right, #ffffff, #818de9); */
    font-family: 'Segoe UI', sans-serif;
  }

  .login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login-box {
    display: flex;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
  }

  .left-section {
    background: url('../images/login02.jpg') no-repeat center center;
    background-size: cover;
    flex: 1;
    padding: 40px;
    color: #333;
}


  .left-section h2 {
    font-weight: bold;
    color: #e15500;
  }

  .right-section {
    flex: 1;
    padding: 40px;
    background-color: #fffef9;
  }

  .role-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }

  .role-btn {
    border: 2px solid #f36c00;
    padding: 8px 25px;
    border-radius: 30px;
    margin: 0 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
  }

  .role-btn.active {
    background-color: #f36c00;
    color: white;
  }

  .form-control:focus {
    border-color: #f36c00;
    box-shadow: none;
  }

  .btn-orange {
    background-color: #f36c00;
    color: #fff;
    border: none;
    border-radius: 8px;
  }

  .btn-orange:hover {
    background-color: #d45400;
  }

  .footer-note {
    font-size: 0.9rem;
  }

  .password-toggle {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
  }
  /* Register */
  .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  .left-img {
    flex: 1 1 300px;
    text-align: center;
    padding: 30px;
  }
  .left-img img {
    width: 100%;
    max-width: 450px;
  }
  .form-box {
    flex: 1 1 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 450px;
  }
  .form-control::placeholder {
    color: #aaa;
  }
  .form-check-label a {
    color: #dc3545;
    text-decoration: none;
  }
  .form-check-label a:hover {
    text-decoration: underline;
  }
  .role-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  .role-toggle button {
    border: none;
    background: #f0f0f0;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
  }
  .role-toggle button.active {
    background: #ff5722;
    color: white;
  }
  .form-title {
    color: #ff5722;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
  }
  .form-control-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #ff5722;
  }
  .input-group {
    position: relative;
    margin-bottom: 20px;
  }
  .input-group input, .input-group select {
    padding-left: 15px;
  }
  .password-hint {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: -15px;
    margin-bottom: 15px;
  }
  .left-img {
    padding: 40px;
  }

  .wave {
    animation: wave-animation 2s infinite;
    display: inline-block;
    transform-origin: 70% 70%;
  }

  @keyframes wave-animation {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
  }

