* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.header {
  background-color: #fff;
  padding: 12px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bri-logo {
  height: 32px;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #0066b3;
  margin: 4px 0;
  border-radius: 2px;
}

.hero-section {
  background: linear-gradient(135deg, #003d6e 0%, #0066b3 50%, #0088cc 100%);
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.hero-content {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.qlola-logo {
  margin-bottom: 30px;
}

.qlola-text {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.q-letter {
  color: #f7a600;
}

.lola-text {
  color: #fff;
}

.by-bri {
  font-size: 18px;
  color: #f7a600;
  font-weight: 500;
  margin-top: -10px;
}

.tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
  letter-spacing: 1px;
}

.login-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-title {
  color: #f7a600;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 400;
}

.info-icon {
  cursor: help;
  opacity: 0.7;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input::placeholder {
  color: #aaa;
  font-size: 13px;
}

.form-group input:focus {
  outline: 2px solid #f7a600;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 45px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.eye-icon {
  width: 20px;
  height: 20px;
  color: #666;
}

.forgot-password {
  color: #f7a600;
  font-size: 12px;
  text-decoration: underline;
  text-align: center;
  margin-top: 5px;
}

.forgot-password:hover {
  color: #ffb820;
}

.back-link {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: none;
  margin-top: 15px;
}

.back-link:hover {
  color: #fff;
  text-decoration: underline;
}

.token-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-align: center;
  margin: 10px 0;
}

.login-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.registration-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-image {
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  height: 150px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #003d6e;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-btn {
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
}

.service-btn.outline {
  background: #fff;
  color: #0066b3;
  border: 2px solid #0066b3;
}

.service-btn.outline:hover {
  background: #0066b3;
  color: #fff;
}

.service-btn.primary {
  background: #0066b3;
  color: #fff;
  border: 2px solid #0066b3;
}

.service-btn.primary:hover {
  background: #004d8c;
  border-color: #004d8c;
}

.service-btn.secondary {
  border-color: #f7a600;
  color: #f7a600;
}

.service-btn.secondary:hover {
  background: #f7a600;
  color: #fff;
}

.contact-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 120px;
}

.social-link svg {
  width: 40px;
  height: 40px;
}

.social-link span {
  font-size: 14px;
  font-weight: 500;
}

.social-link.telegram {
  background: #e8f4fd;
  color: #0088cc;
}

.social-link.telegram:hover {
  background: #0088cc;
  color: #fff;
}

.social-link.whatsapp {
  background: #e8f8e8;
  color: #25d366;
}

.social-link.whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.social-link.phone {
  background: #e8f0fd;
  color: #0066b3;
}

.social-link.phone:hover {
  background: #0066b3;
  color: #fff;
}

.social-link.email {
  background: #fff3e0;
  color: #f7a600;
}

.social-link.email:hover {
  background: #f7a600;
  color: #fff;
}

.footer {
  background: #003d6e;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .qlola-text {
    font-size: 48px;
  }
  
  .hero-background {
    padding: 30px 15px;
  }
  
  .login-box {
    padding: 20px 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}