/* ===== Google Font Import - Poformsins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  
}

#particles-js {
  position: fixed;              /* make it stick to the viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;                /* fill entire visible area */
  background: linear-gradient(135deg, #4169ed, #ff901d);
  z-index: -1;                  /* send behind all content */
  overflow: hidden;
}

/* .loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* .loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #4169ed;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.2s linear infinite;
}  */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.container {
  width: 100%;
  max-width: 500px;
  padding: 16px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  margin: auto;
  margin-top: 30px;
}
.login-card {
  background: rgba(255, 255, 255, 0.97);
  padding: 0px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 420px !important;
  margin: 40px auto;
  animation: fadeInDown 0.8s ease;
}


.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0 !important;
  animation: fadeIn 1s ease-in forwards;
}

.logo {
  width: 180px !important;                /* increased size */
  max-width: 70vw;             /* scales nicely on mobile */
  height: auto;
  margin-bottom: 0 !important;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
  animation: floatLogo 3.5s ease-in-out infinite; /* add motion */
}

/* fade-in animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* smooth floating motion */
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}



/* Input styling */
.input-group {
  margin: 20px auto;
  text-align: left;
  width: 100%;
  max-width: 350px;
}

.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.input-group input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: border 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
  border-color: #4169ed;
  outline: none;
  box-shadow: 0 0 0 3px rgba(65, 105, 237, 0.15);
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
#packages .package-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  transition: box-shadow 0.2s ease;
}

#packages .package-card:hover {
  box-shadow: 0 0 8px rgba(65, 105, 237, 0.2);
}

#packages .package-price {
  background-color: #f0f0f0;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  min-width: 70px;
  text-align: center;
  margin-right: 10px;
}

#packages .package-details {
  flex-grow: 1;
  padding: 0 10px;
}

#packages .package-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

#packages .package-info {
  font-size: 12px;
  color: #777;
}

#packages .buy-button {
  background-color: #4169ed;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#packages .buy-button:hover {
  background-color: #2f4ecf;
}

/* Button styling */
button,
.trial-btn {
  display: inline-block;
  width: auto;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  margin: 12px 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

#btn-submit {
  background-color: #4169ed;
  color: white;
  border: 2px solid #2f4ecf;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#btn-submit:hover {
  background-color: #2f4ecf;
  transform: scale(1.02);
}

.trial-btn {
  background-color: #ff901d;
  color: white;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.trial-btn:hover {
  background-color: #e67c00;
  transform: scale(1.02);
}


/* Align all form content */
#loginform {
  display: flex;
  flex-direction: column;
  align-items: center;
}



/* Support links */
.support-link {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  display: block;
}

/* Power text */
.powered {
  font-size: 12px;
  color: #aaa;
  margin-top: 20px;
  text-align: center;
}

.marquee {
  width: 100%;
  direction: ltr;
  height: 70%;
  font-size: 14px;
  font-weight: bolder;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Responsive tweaks */
@media (max-width: 600px) {
  .input-group,
  button,
  .trial-btn {
    width: 90%;
    max-width: 90%;
  }
}

