body {
      background: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.6)
      ), url('../img/bg2.jpg') no-repeat center center fixed;
      background-size: cover;
      height: 100vh;
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      color: #fff;
    }

    .top-right {
      position: absolute;
      top: 20px;
      right: 30px;
      z-index: 999;
    }

    .top-right a.text-link {
      color: #fff;
      font-size: 0.95rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .top-right a.text-link:hover {
      color: #f8f9fa;
      text-decoration: underline;
    }

    .btn-login {
      padding: 8px 20px;
      font-size: 0.95rem;
      border-radius: 30px;
      border: 1px solid #fff;
      background-color: #fff;
      color: rgb(29, 27, 27);
      transition: all 0.3s ease;
    }

    .btn-login:hover {
      background-color: #ded8d8;
      color: #e3a333;
      transform: scale(1.05);
      box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.3);
    }

    .content {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
    }

    .logo {
      width: 120px;
      margin-bottom: 20px;
      animation: fadeIn 1s ease-in-out;
    }

    h1 {
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      animation: fadeInDown 1s ease forwards;
    }

    h2 {
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 30px;
      animation: fadeInUp 1s ease forwards;
    }

    .btn-daftar {
      padding: 12px 30px;
      font-size: 1.1rem;
      border-radius: 50px;
      background-color: #95bfea;
      color: #000;
      border: none;
      transition: all 0.3s ease;
      animation: fadeIn 2s ease-in;
    }

    .btn-daftar:hover {
      background-color: #68a8e7;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      h1 { font-size: 2rem; }
      h2 { font-size: 1.2rem; }
      .top-right { right: 15px; top: 15px; }
    }