.loginContainer { font-family: "Inter", sans-serif; background-color: #f0f5ff; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .loginBox { background-color: #ffffff; border-radius: 16px; padding: 40px; box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05); width: 300px; text-align: center; } .logo { width: 80px; height: auto; margin-bottom: 20px; } .h1 { font-size: 28px; font-weight: 700; margin-bottom: 10px; color: #d22129; /* 🔴 Warna merah PSI */ } .subtitle { font-size: 14px; color: #6b7280; margin-bottom: 20px; } .form { display: flex; flex-direction: column; gap: 15px; text-align: left; } .input { width: 100%; padding: 12px 15px; font-size: 16px; color: #1f2937; background-color: #f8f9fa; border: 1px solid #d1d5db; border-radius: 8px; box-sizing: border-box; } .button { background-color: #d22129; /* 🔴 Warna merah PSI */ color: #ffffff; padding: 12px 24px; border-radius: 24px; font-size: 18px; font-weight: 600; cursor: pointer; border: none; width: 100%; transition: background-color 0.3s; } .button:hover { background-color: #b71c1c; /* versi lebih gelap saat hover */ } .error { color: red; font-size: 14px; text-align: left; margin-top: -10px; } .footer { margin-top: 30px; font-size: 12px; color: #9ca3af; }