/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  overflow-x: hidden;
}

/* Header */
.header { position: fixed; width: 100%; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 15px 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header .logo { font-size: 26px; font-weight: bold; color: #fff; }
.header nav ul { list-style: none; display: flex; gap: 25px; }
.header nav ul li a { text-decoration: none; color: #fff; font-weight: 500; transition: 0.3s; }
.header nav ul li a:hover { color: #ff6b6b; }

/* Form Section */
.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.form-container {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 50px 30px;
  border-radius: 25px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.form-container h2 { margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group input {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
.form-group input:focus { outline: none; background: rgba(255,255,255,0.4); border-color: #ff6b6b; }
button.btn {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
button.btn:hover { transform: scale(1.05); }
.switch-form { margin-top: 15px; }
.switch-form a { color: #ff6b6b; text-decoration: none; }
.switch-form a:hover { text-decoration: underline; }

/* Footer */
footer { background: rgba(0,0,0,0.2); color: #fff; text-align: center; }
footer .footer-top { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px; }
footer .footer-links a { margin: 0 15px; color: #fff; text-decoration: none; transition: 0.3s; }
footer .footer-links a:hover { color: #ff6b6b; }
footer .footer-contact p { margin-top: 5px; }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.3); padding: 10px 0; font-size: 14px; }

/* Animations */
.animate { opacity: 0; transform: translateY(20px); animation-fill-mode: forwards; }
.fadeInUp { animation: fadeInUp 1s ease forwards; }
.fadeInDown { animation: fadeInDown 1s ease forwards; }
@keyframes fadeInUp { to { opacity:1; transform: translateY(0); } }
@keyframes fadeInDown { to { opacity:1; transform: translateY(0); } }
