


body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background: #f9f9f9;
}

.signin-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signin-box {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.logo {
  height: 40px;
  margin-bottom: 20px;
}

h2 {
  font-weight: 700;
  margin-bottom: 30px;
}

form {
  text-align: left;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  margin-top: 20px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}

.forgot-link {
  display: block;
  text-align: right;
  font-size: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #6a00ff;
}

.signin-btn {
  width: 100%;
  padding: 12px;
  background-color: #FFC300
 ;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.signup-info,
.support-info {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}

.signup-info a,
.support-info a {
  color: #6a00ff;
  text-decoration: none;
}
/* Responsive Fixes */
@media (max-width: 768px) {
  .hero-grid,
  .split,
  .contact {
    flex-direction: column;
    align-items: center;
  }

  .search-box {
    margin-top: 10px;
  }
}

/* Custom Loader (Main Preloader) */
.custom-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Mulish', sans-serif;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.custom-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo Container for Animated Fill Effect */
.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

/* Base Logo (Image or SVG) */
.logo-base {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Fill Animation Using Mask */
.logo-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #FFC300;
  z-index: 1;
  mask-image: url('../images/color_remove.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('../images/color_remove.png');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: height 0.1s linear;
}

/* Percentage Text Under Loader */
.loader-percentage {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* Alternative Spinner (Optional Fallback) */
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #FFC300;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Spinner Animation Keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
