/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and html */
html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  color: #f0f0f0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  background: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  filter: drop-shadow(0 0 5px #ffd700);
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  letter-spacing: 2px;
  user-select: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ccc;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #ffd700;
  color: #121212;
  box-shadow: 0 0 8px #ffd700;
}

/* Vertical container */
.vertical-container {
  margin-top: 60px; /* To avoid navbar */
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 3rem 4rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.section {
  background: linear-gradient(135deg, #292929 0%, #1f1f1f 100%);
  border-radius: 15px;
  padding: 4rem 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  color: #eee;
  text-align: left;
  transition: background 0.4s ease, transform 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.section:nth-child(odd) {
  background: linear-gradient(135deg, #121212 0%, #292929 100%);
}

/* Fade-in animation */
.fade-in {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}
.delay-2 {
  animation-delay: 0.8s;
}
.delay-3 {
  animation-delay: 1.2s;
}
.delay-4 {
  animation-delay: 1.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headings */
.section h1,
.section h2 {
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
  margin-bottom: 1.5rem;
  user-select: none;
}

.section h1 {
  font-size: 3rem;
}

.section h2 {
  font-size: 2.5rem;
}

/* Paragraph */
.section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #ffd700;
  color: #121212;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-animated:hover {
  background-color: #fff;
  color: #444;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

/* Button ripple effect */
.btn-animated::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10);
  opacity: 0;
  transition: transform 0.7s, opacity 1s;
  border-radius: 50%;
  pointer-events: none;
}
.btn-animated:hover::after {
  transform: scale(0);
  opacity: 1;
}

/* Section images */
.section-image {
  max-width: 100%;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  transition: transform 0.5s ease;
  user-select: none;
  height: auto;
}

/* Zoom animation on hover */
.zoom:hover {
  transform: scale(1.05);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: #222;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  user-select: none;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.7);
}

.feature-card span.material-icons {
  font-size: 48px;
  color: #ffd700;
  margin-bottom: 1rem;
  user-select: none;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Steps list (How it works) */
.steps-list {
  list-style-position: inside;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 2rem;
  user-select: none;
}

.steps-list li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
}

.steps-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 0;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  margin-top: 2rem;
  height: 160px;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  font-style: italic;
  font-size: 1.2rem;
  color: #eee;
  text-align: center;
  padding: 0 2rem;
  user-select: none;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial h4 {
  margin-top: 1rem;
  font-weight: 700;
  color: #ffd700;
}

/* Testimonial controls */
.testimonial-controls {
  margin-top: 1rem;
  text-align: center;
}

.testimonial-controls button {
  background: none;
  border: 2px solid #ffd700;
  color: #ffd700;
  font-size: 1.5rem;
  padding: 6px 14px;
  margin: 0 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.testimonial-controls button:hover {
  background-color: #ffd700;
  color: #121212;
}

/* FAQ */
.faq-item {
  background: #222;
  margin: 1rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.faq-question {
  background: #121212;
  color: #ffd700;
  padding: 1rem 1.5rem;
  width: 100%;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
  background-color: #ffd700;
  color: #121212;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: #292929;
  color: #eee;
  font-size: 1rem;
  line-height: 1.5;
  transition: max-height 0.4s ease;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  background-color: #1f1f1f;
  color: #bbb;
  margin-top: 6rem;
  user-select: none;
}

.footer p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.social-icons a {
  color: #ffd700;
  margin: 0 10px;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 700px) {
  .vertical-container {
    padding: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section h1 {
    font-size: 2rem;
  }
  .section h2 {
    font-size: 1.8rem;
  }
  .btn {
    font-size: 1rem;
    padding: 10px 22px;
  }
}
/* About Section Styling */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
  color: #fff;
  user-select: none;
  gap: 3rem;
  max-width: 960px;
  margin: 4rem auto;
  animation: fadeSlideIn 1s ease forwards;
}

/* Text Content */
.about-content {
  flex: 1 1 420px;
  max-width: 480px;
  animation: fadeInText 1.2s ease forwards;
}

.about-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 12px #ffd700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.about-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

/* Button */
.btn-glow {
  background: linear-gradient(90deg, #ffd700, #ffec85);
  color: #222;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 40px;
  border: none;
  box-shadow: 0 0 12px #ffd700, 0 0 20px #ffd700 inset;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  text-decoration: none;
  display: inline-block;
}

.btn-glow:hover,
.btn-glow:focus {
  background: linear-gradient(90deg, #fff88e, #ffd700);
  box-shadow: 0 0 30px #fff88e, 0 0 40px #ffd700 inset;
  transform: scale(1.05);
  color: #111;
  outline: none;
}

/* Image */
.about-image {
  flex: 1 1 420px;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  animation: fadeInImage 1.5s ease forwards;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  user-select: none;
  border-radius: 20px;
}

.about-image img:hover {
  transform: scale(1.07) rotate(1deg);
  filter: drop-shadow(0 0 8px #ffd700);
}

/* Animations */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 850px) {
  .about-section {
    flex-direction: column;
    padding: 3rem 2rem;
    margin: 3rem 1rem;
  }
  .about-content, .about-image {
    max-width: 100%;
  }
  .about-content h1 {
    font-size: 2.25rem;
  }
  .about-content p {
    font-size: 1.1rem;
  }
}
/* Contact Section Styling */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #121212 0%, #1f1f1f 100%);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
  color: #eee;
  gap: 3rem;
  max-width: 960px;
  margin: 4rem auto;
  user-select: none;
  animation: fadeSlideUp 1s ease forwards;
}

/* Content */
.contact-content {
  flex: 1 1 420px;
  max-width: 480px;
  animation: fadeInLeft 1.2s ease forwards;
}

.contact-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 15px #ffd700;
}

.contact-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ccc;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffd700;
  user-select: none;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 2px solid #444;
  background-color: #222;
  color: #eee;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 10px #ffd700;
}

/* Button */
.btn-glow {
  background: linear-gradient(90deg, #ffd700, #ffec85);
  color: #222;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 40px;
  border: none;
  box-shadow: 0 0 15px #ffd700, 0 0 25px #ffd700 inset;
  cursor: pointer;
  transition: all 0.35s ease;
  user-select: none;
  align-self: flex-start;
  text-decoration: none;
}

.btn-glow:hover,
.btn-glow:focus {
  background: linear-gradient(90deg, #fff88e, #ffd700);
  box-shadow: 0 0 35px #fff88e, 0 0 50px #ffd700 inset;
  transform: scale(1.07);
  color: #111;
  outline: none;
}

/* Image */
.contact-image {
  flex: 1 1 420px;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.3);
  animation: fadeInRight 1.5s ease forwards;
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  user-select: none;
  transition: transform 0.5s ease;
}

.contact-image img:hover {
  transform: scale(1.07) rotate(-1deg);
  filter: drop-shadow(0 0 8px #ffd700);
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 850px) {
  .contact-section {
    flex-direction: column;
    padding: 3rem 2rem;
    margin: 3rem 1rem;
  }
  .contact-content, .contact-image {
    max-width: 100%;
  }
  .contact-content h1 {
    font-size: 2.25rem;
  }
  .contact-content p {
    font-size: 1.1rem;
  }
}
/* Register Section Styling */
.register-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 5rem 2rem;
  border-radius: 25px;
  max-width: 700px;
  margin: 5rem auto;
  box-shadow: 0 20px 60px rgba(22, 33, 62, 0.75);
  text-align: center;
  color: #e0e0e0;
  user-select: none;
  animation: slideInFromBottom 1s ease forwards;
  position: relative;
  overflow: hidden;
}

/* Glowing accent shape */
.register-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #ffd700;
  filter: blur(100px);
  opacity: 0.3;
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: 0;
}

.register-content {
  position: relative;
  z-index: 1;
}

.register-section h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ffd700;
  letter-spacing: 3px;
  text-shadow: 0 0 15px #ffd700;
  animation: fadeInScale 1.2s ease forwards;
}

.register-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #ccc;
  line-height: 1.5;
  font-style: italic;
  animation: fadeInScale 1.4s ease forwards;
}

/* Button */
.btn-register {
  background: linear-gradient(90deg, #ffd700, #fff88e);
  color: #222;
  padding: 16px 48px;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 40px;
  border: none;
  box-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700 inset;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  animation: fadeInScale 1.6s ease forwards;
  user-select: none;
}

.btn-register:hover,
.btn-register:focus {
  background: linear-gradient(90deg, #fff88e, #ffd700);
  box-shadow: 0 0 50px #fff88e, 0 0 70px #ffd700 inset;
  transform: scale(1.1);
  color: #111;
  outline: none;
}

/* Animations */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .register-section {
    padding: 4rem 1.5rem;
  }
  .register-section h1 {
    font-size: 2.25rem;
  }
  .register-section p {
    font-size: 1.1rem;
  }
  .btn-register {
    padding: 14px 36px;
    font-size: 1rem;
  }
}
/* Modal background */
.modal {
  display: none; /* Hidden by default */
  position: fixed; 
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  transition: opacity 0.4s ease;
}

/* Modal content box */
.modal-content {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  margin: 8% auto;
  padding: 30px 40px;
  border-radius: 20px;
  max-width: 450px;
  color: #e0e0e0;
  position: relative;
  box-shadow: 0 20px 60px rgba(22, 33, 62, 0.85);
  animation: slideDownFadeIn 0.4s ease forwards;
  user-select: none;
}

/* Close button */
.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-button:hover {
  color: #fff;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

label {
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 12px 15px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: #222d44;
  color: #f0f0f0;
  transition: background-color 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  background: #314a7e;
  box-shadow: 0 0 8px #ffd700;
}

/* Submit button */
.submit-btn {
  margin-top: 10px;
  background: linear-gradient(90deg, #ffd700, #fff88e);
  color: #222;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 0;
  border-radius: 40px;
  border: none;
  box-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700 inset;
  cursor: pointer;
  transition: all 0.4s ease;
}
.submit-btn:hover {
  background: linear-gradient(90deg, #fff88e, #ffd700);
  box-shadow: 0 0 50px #fff88e, 0 0 70px #ffd700 inset;
  color: #111;
  transform: scale(1.05);
  outline: none;
}

/* Animations */
@keyframes slideDownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 500px) {
  .modal-content {
    width: 90%;
    padding: 25px 20px;
  }
}
.animated-logo {
  display: flex;
  align-items: center;
  animation: bounceIn 2s ease-in-out;
}

.animated-logo img {
  width: 50px; /* adjust as needed */
  height: auto;
  margin-right: 10px;
  animation: float 3s ease-in-out infinite;
}

.animated-logo span {
  font-size: 24px;
  font-weight: bold;
  animation: fadeIn 2s ease forwards;
}

/* Bouncing entrance effect */
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Floating effect for logo image */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Fade-in for text */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.moving-logo {
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #121212;
  color: #fff;
}

.navbar {
  background-color: transparent;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-item {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #ffc107;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #ffc107;
}

.moving-logo {
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.login-section {
  background: radial-gradient(ellipse at center, #1f1f1f 0%, #0c0c0c 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-login {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  animation: floatIn 1s ease-out;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.glass-login h1 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
}

.glass-login p {
  color: #aaa;
  margin-bottom: 30px;
}

input[type="email"], input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background: #1e1e1e;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

input:focus {
  background: #2b2b2b;
  border: 1px solid #ffc107;
}

.btn-login {
  background: #ffc107;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
  margin-top: 10px;
}

.btn-login:hover {
  background: #ffdd57;
}

.extra-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
  color: #ccc;
}

.extra-options a {
  color: #ffc107;
  text-decoration: none;
}

.google-btn {
  background: #fff;
  color: #000;
  padding: 10px;
  margin-top: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.google-btn img {
  width: 20px;
  margin-right: 10px;
}


  