body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      color: #fff;
      background: url('../img/SpinningAula.jpg') no-repeat center center fixed;
      background-size: cover;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 40px;
      position: fixed;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1000;
    }

    .navbar img {
      height: 45px;
    }

    .menu {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .menu a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }

    .menu a:hover {
      color: #4caf50;
    }

    .form-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding-top: 100px;
      backdrop-filter: blur(8px);
    }

    .form-container {
      background: rgba(0, 0, 0, 0.8);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
      text-align: center;
      max-width: 500px;
      width: 90%;
      animation: fadeInUp 1s ease-out;
    }

    .form-container h2 {
      margin-bottom: 20px;
      font-size: 2rem;
      color: #ffffff;
    }

    .form-container input {
      width: 100%;
      padding: 12px;
      margin-bottom: 16px;
      border-radius: 10px;
      border: none;
      font-size: 1rem;
      background-color: #fff;
      color: #000;
    }

    .form-container input:focus {
      outline: none;
      box-shadow: 0 0 10px #4caf50;
    }

    .form-container .form-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .form-container .form-actions input[type="submit"] {
      background-color: #4CAF50;
      border: none;
      padding: 10px 20px;
      border-radius: 10px;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .form-container .form-actions input[type="submit"]:hover {
      background-color: #3d3d3d;
      color: red;
    }

    .form-container .form-actions a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .form-container .form-actions a:hover {
      color: red;
    }

    .section {
      padding: 80px 20px;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      text-align: center;
    }

    .section h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .section p {
      max-width: 800px;
      margin: auto;
      font-size: 1.1rem;
    }

    .footer {
      background-color: #000;
      color: white;
      text-align: center;
      padding: 20px;
    }

    .social-icons img {
      width: 28px;
      margin: 0 8px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1.2s ease-out, transform 1s ease-out;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }