 body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      margin: 0;
      background-color: #f5f5f7;
      color: #333;
    }

    .top-bar {
      background-color: #6b1c6b;
      color: white;
      font-size: 14px;
      padding: 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .top-bar i { margin-right: 8px; }
    .top-bar a {
      color: white;
      margin-left: 15px;
      text-decoration: none;
    }
    
    *,
*::before,
*::after {
  box-sizing: border-box;
}

    header {
      background: white;
      padding: 10px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #e0e0e0;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 50px;
      margin-right: 10px;
    }

    nav {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    nav a {
      color: #222;
      font-weight: 500;
      text-decoration: none;
    }
    nav a:hover {
      color: #6b1c6b;
    }

    .container {
    width: 100%;
    padding: 20px 15px;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
  }
}

    h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin: 15px 0 5px;
      font-weight: 500;
    }

    input, select, textarea, button {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      border-radius: 6px;
      border: 1px solid #ccc;
      margin-bottom: 16px;
    }

    button {
      background-color: #007aff;
      color: white;
      border: none;
      cursor: pointer;
    }

    button:hover {
      background-color: #005ecb;
    }

    iframe {
      width: 100%;
      height: 700px;
      border: none;
    }

    .hidden { display: none; }

    footer {
      background-color: #4d1150;
      color: white;
      padding: 40px 30px;
    }

    footer h3 { margin-top: 0; }

    footer .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    footer .column {
      flex: 1 1 30%;
      margin-bottom: 20px;
    }

    footer a {
      color: white;
      text-decoration: none;
      font-size: 14px;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .copyright {
      text-align: center;
      padding: 15px;
      background: #2e0d30;
      font-size: 13px;
    }
    
    .form-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
        }
        .form-control {
            margin-bottom: 15px;
        }
        .form-control label {
            display: block;
            font-weight: bold;
        }
        .form-control input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }
        .form-control button {
            width: 100%;
            padding: 10px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .form-control button:hover {
            background-color: #0056b3;
        }
        .login-link {
            text-align: center;
            margin-top: 15px;
        }
        .login-link a {
            color: #007bff;
            text-decoration: none;
        }
        .login-link a:hover {
            text-decoration: underline;
        }
        
        .auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #f5f5f7;
}

.auth-container {
  display: flex;
  max-width: 820px;
  width: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex-direction: row;
}

/* Left Panel */
.auth-left {
  background: linear-gradient(to right, #3f006f, #c54186);
  color: white;
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.auth-left h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.auth-left p {
  font-size: 14px;
  margin-bottom: 25px;
  max-width: 280px;
}

.auth-left .auth-btn {
  background-color: white;
  color: black;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.auth-left .auth-btn:hover {
  background: #f0f0f0;
}

/* Right Panel */
.auth-right {
  flex: 1;
  padding: 40px 30px;
  background: #fefefe;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 20px;
  color: #444;
}

.social-icons i {
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #6b1c6b;
}

/* Input Styling - Corporate Look */
.auth-right form input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  transition: border 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.auth-right form input:focus {
  border-color: #6b1c6b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 28, 107, 0.1);
}

/* Submit Button */
.auth-right form button {
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-right form button:hover {
  background-color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
  }
  
  .auth-right form input,
  .auth-right form button {
    width: 100% !important;
    padding: 12px;
    font-size: 15px;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
  
  .auth-left h2,
  .auth-right h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .auth-left p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .auth-left .auth-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
  }
  
  .captcha-section {
    text-align: center;
  }

  .captcha-section img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
  }

  .auth-left, .auth-right {
    width: 100%;
    padding: 20px 15px;
    text-align: center;
  }

  .auth-right h2 {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
