body {
            background: linear-gradient(135deg, #009999, #006666);
            color: white;
            font-family: 'Poppins', sans-serif;
        }
        .card {
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        .btn-primary {
            background: #ffcc00;
            border: none;
            transition: background 0.3s ease-in-out;
        }
        .btn-primary:hover {
            background: #ff9900;
        }
        .form-label {
            font-weight: bold;
        }
        .link-primary {
            color: #ffcc00;
            font-weight: bold;
            text-decoration: none;
        }
        .link-primary:hover {
            color: #ff9900;
            text-decoration: underline;
        }
        .form-container {
            animation: fadeIn 1.5s ease-in-out;
        }
        .form-control:focus {
            box-shadow: 0 0 5px rgba(255, 204, 0, 0.8);
            border-color: #ffcc00;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .toggle-password {
            cursor: pointer;
        }